-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 KB
/
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": "chip-js",
"version": "2.2.0",
"scripts": {
"test": "karma start --singleRun=true",
"tdd": "karma start",
"build": "browserify --debug --standalone chip index.js | exorcist dist/chip.js.map > dist/chip.js",
"watch": "watchify --debug --standalone chip index.js -o dist/chip.js",
"compress": "uglifyjs dist/chip.js -c -o dist/chip.min.js",
"docs": "docco -o api-docs src/*.js",
"prepublish": "npm run build",
"postbuild": "npm run compress && npm run docs"
},
"dependencies": {
"chip-utils": "~0.3.0",
"fragments-js": "~0.7.0",
"fragments-built-ins": "~0.7.0",
"routes-js": "~0.1.3"
},
"devDependencies": {
"browserify": "^10.2.1",
"chai": "^3.4.1",
"docco": "^0.7.0",
"exorcist": "^0.4.0",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.1",
"karma-source-map-support": "^1.1.0",
"mocha": "^2.3.4",
"uglify-js": "^2.4.23",
"watchify": "^3.2.1"
}
}