forked from xmppjs/xmpp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 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
{
"private": true,
"devDependencies": {
"browserify": "^13.0.1",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"lerna": "2.0.0-beta.15",
"mocha": "^2.5.3",
"mocha-phantomjs-core": "^1.3.1",
"pem": "^1.8.3",
"phantomjs-prebuilt": "^2.1.7",
"should": "^8.3.2",
"sinon": "^1.17.3",
"standard": "^7.1.1"
},
"scripts": {
"postinstall": "npm run bootstrap",
"lint": "standard",
"unit": "mocha --recursive packages/*/test/ -t 5000",
"bootstrap": "lerna bootstrap",
"bundle": "lerna run bundle",
"integration": "mocha --recursive test/integration -t 5000",
"test": "npm run coverage && npm run lint && lerna run test",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec --recursive packages/*/test/ -t 5000",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test:browser": "phantomjs ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js http://localhost:8000/test/browser/ spec '{\"ignoreResourceErrors\": true}'"
}
}