forked from mpangrazzi/pepper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.35 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
36
37
38
{
"name": "chilli-pepper",
"version": "1.2.0",
"description": "Tiny JS client library for CoovaChilli JSON Interface",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/mpangrazzi/pepper.git"
},
"scripts": {
"build": "mkdir -p ./dist && ./node_modules/.bin/browserify ./index.js -s Pepper -i superagent -o ./dist/pepper.js",
"build-min": "mkdir -p ./dist && ./node_modules/.bin/browserify ./index.js -s Pepper -i superagent | ./node_modules/.bin/uglifyjs -mc > ./dist/pepper.min.js",
"examples": "npm run build && mkdir -p ./examples/public && cp ./dist/pepper.js ./examples/public && node ./examples",
"build-test": "./node_modules/.bin/browserify -i superagent ./test/tests.js > ./test/bundle.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha test/tests.js",
"test-serve": "npm run build && cp ./dist/pepper.js ./test/pepper.js && npm run build-test && node ./test"
},
"author": "Michele Pangrazzi <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.1.1",
"jsonp": "^0.1.0",
"superagent": "^0.21.0"
},
"devDependencies": {
"browserify": "^8.1.1",
"chai": "^1.10.0",
"express": "^4.11.0",
"jsdom": "^3.0.2",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16"
},
"jshintConfig": {
"loopfunc": true,
"multistr": true,
"expr": true
}
}