-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 907 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "local-addon-devtools",
"productName": "Devtools Addon for Local",
"version": "1.0.1",
"author": "Tyler Kemme",
"contributors": [
{
"name": "Tyler Kemme",
"email": "[email protected]"
}
],
"keywords": [
"local-addon"
],
"description": "A simple addon for Local that opens devTools when active.",
"renderer": "lib/renderer.js",
"license": "MIT",
"scripts": {
"build": "babel src -d lib",
"watch": "run-when-changed --watch 'src/*.js' --exec 'npm run-script build'",
"version": "auto-changelog --package; git add CHANGELOG.md"
},
"devDependencies": {
"auto-changelog": "*",
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"run-when-changed": "^1.3.0"
},
"engines": {
"local-by-flywheel": "^2.0.0"
}
}