-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@flossbank/cli",
"version": "0.0.37",
"license": "GPL-3.0-or-later",
"bin": {
"flossbank": "src/index.js"
},
"preferGlobal": true,
"engines": {
"node": ">=8"
},
"scripts": {
"prepublishOnly": "npm run test:unit",
"build": "cross-env PKG_CACHE_PATH=.pkg-cache pkg --public -t node12 -o flossbank package.json",
"test": "standard --fix && npm run test:unit",
"test:unit": "ava -v --timeout=15s --match=\"!*integ*\" test/**/*.js",
"test:unit:tap": "ava -vt --timeout=15s --match=\"!*integ*\" test/**/*.js",
"test:integ": "cd ci/tests && ava -v --timeout=1m --serial --match=\"*integ*\" *.test.js && cd ../../",
"test:integ:tap": "cd ci/tests && ava -vt --timeout=1m --serial --match=\"*integ*\" *.test.js && cd ../../",
"test:tap": "multi-tap -r test:unit:tap -r test:integ:tap | tap-xunit",
"coverage": "cross-env FLOSSBANK_TEST_SOURCE=1 DEBUG=flossbank nyc --reporter=cobertura npm run --silent test:tap > TEST_RESULTS.xml"
},
"nyc": {
"exclude": [
"test/**/*.js",
"ci/tests/**/*.js",
"webpack.config.js"
]
},
"standard": {
"ignore": [
"ci/tests/test/*"
]
},
"dependencies": {
"agentkeepalive": "^4.1.2",
"boxen": "^4.1.0",
"conf": "^6.2.0",
"debug": "^4.1.1",
"decompress": "^4.2.1",
"decompress-unzip": "^4.0.1",
"del": "^5.1.0",
"diffy": "^2.1.0",
"got": "^11.1.0",
"kleur": "^3.0.3",
"make-dir": "^3.0.2",
"minimist": "^1.2.3",
"nopt": "^4.0.3",
"npm": "^6.14.6",
"temp-write": "^4.0.0",
"tempy": "^0.5.0",
"term-size": "^2.1.0",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"ava": "^3.5.0",
"cross-env": "^7.0.2",
"husky": "^3.0.5",
"ls": "^0.2.1",
"multi-tap": "^1.0.1",
"nock": "^11.7.2",
"nyc": "^14.1.1",
"pkg": "^4.4.8",
"rimraf": "^3.0.2",
"sinon": "^7.5.0",
"standard": "^13.1.0",
"tap-xunit": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/flossbank/cli.git"
}
}