-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.69 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hot-wire",
"version": "0.0.2",
"description": "",
"main": "src/HotWire.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"postinstall": "( [ -d .git ] && for i in tools/git-hooks/*; do cp -n \"tools/git-hooks/$(basename \"$i\")\" \".git/hooks/$(basename \"$i\")\"; done) || exit 0",
"_coverage": "rm -rf ./nyc_output && ./node_modules/nyc/bin/nyc.js --reporter lcov mocha --recursive",
"coverage": "npm run-script _coverage && ( nohup xdg-open './coverage/lcov-report/index.html' > /dev/null || nyc report)",
"coverage-text": "npm run-script _coverage && ./node_modules/istanbul/lib/cli.js report text",
"test": "./node_modules/jshint/bin/jshint src test && ./node_modules/jscs/bin/jscs src test && ./node_modules/mocha/bin/mocha --recursive",
"coveralls": "npm run-script _coverage && nyc report --reporter=text-lcov | coveralls"
},
"author": "Krzysztof Chrapka",
"license": "MIT",
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"coveralls": "^2.13.1",
"dirty-chai": "^2.0.0",
"jscs": "^3.0.7",
"jshint": "^2.9.5",
"mocha": "^3.4.2",
"nyc": "^11.0.3"
},
"dependencies": {
"lodash": "^4.17.4",
"when": "^3.7.8"
},
"nyc": {
"instrumentation": {
"default-excludes": true,
"excludes": [
"tools"
],
"preserve-comments": true
},
"reporting": {
"watermarks": {
"statements": [
75,
100
],
"lines": [
75,
100
],
"functions": [
75,
100
],
"branches": [
90,
100
]
}
}
}
}