-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1010 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
{
"name": "sound-control-webextension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack -w -v --display-error-details --progress --colors",
"build-once": "webpack -v --display-error-details --progress --colors",
"flow:check": "flow check",
"test": "npm run flow:check",
"start": "web-ext run",
"pkg": "npm run build-once && web-ext build -s extension/"
},
"author": "Kumar McMillan",
"license": "MPL-2.0",
"devDependencies": {
"babel-core": "6.20.0",
"babel-loader": "6.2.9",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-flow-strip-types": "6.21.0",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"flow-bin": "0.35.0",
"react": "15.4.1",
"react-dom": "15.4.1",
"web-ext": "5.0.0",
"webpack": "1.14.0",
"webpack-cli": "3.3.9"
}
}