forked from ghostwords/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 825 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
{
"name": "chameleon-browser-extension-tools",
"version": "1.11.0",
"private": true,
"dependencies": {
"envify": "~3.2.0",
"expose-loader": "~0.6.0",
"glob": "~3.2.9",
"json-loader": "~0.5.1",
"jsx-loader": "~0.11.2",
"jsxhint": "0.4.14",
"moment": "~2.6.0",
"raw-loader": "~0.5.1",
"react": "~0.11.1",
"shelljs": "~0.2.6",
"tldjs": "~1.5.0",
"transform-loader": "~0.2.1",
"underscore": "~1.6.0",
"webpack": "~1.12.2",
"yargs": "~1.2.1"
},
"scripts": {
"build": "./tools/build.js",
"clean": "rm -rf dist/*",
"dist": "npm run build && npm run test && npm run clean && ./tools/dist.js",
"lint": "jsxhint .",
"release": "NODE_ENV=production npm run dist && npm run build",
"test": "npm run lint && echo 'One day, this will run tests.'",
"watch": "./tools/build.js --watch"
}
}