-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "sniff-fns",
"version": "0.5.3",
"author": "Ivan Shornikov <[email protected]>",
"license": "MIT",
"description": "Browser agent sniffing functions",
"repository": "https://github.com/js-fns/sniff-fns",
"engine": {
"node": ">= 0.11"
},
"main": "index.js",
"dependencies": {},
"devDependencies": {
"ava": "^0.14.0",
"coveralls": "^2.11.9",
"fs-promise": "^0.5.0",
"glob-promise": "^1.0.6",
"js-beautify": "^1.6.2",
"nyc": "^6.4.4",
"snazzy": "^4.0.0",
"standard": "^7.0.1",
"webpack": "^1.12.0"
},
"scripts": {
"test": "nyc ava test.js src/**/test.js",
"test-watch": "npm test -- --watch",
"test-coverage-report": "nyc report --reporter=html",
"test-coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard --verbose | snazzy",
"build-index": "node scripts/build_index",
"build-binded": "node scripts/build_binded",
"build-dist": "webpack --config ./config/webpack.js",
"build-npm-package": "node scripts/build_npm_package",
"sync-versions": "node ./scripts/sync_versions",
"release": "./scripts/release.sh"
},
"standard": {
"ignore": ["dist/**"]
}
}