-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "fugl",
"description": "A tool for verifying that changes to a package do not affect projects dependent upon it.",
"version": "2.0.0",
"main": "src/Fugl.js",
"author": "Alex J Burke <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/alexjeffburke/fugl.git"
},
"bugs": {
"url": "https://github.com/alexjeffburke/fugl/issues"
},
"bin": {
"fugl": "./bin/fugl"
},
"dependencies": {
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"fs-extra": "^3.0.1",
"get-stdin": "^6.0.0",
"jsdom": "^16.3.0",
"lodash": "^4.17.13",
"mocha": "^8.0.1",
"shoulder": "^2.0.0",
"yargs": "^16.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nyc": "^15.1.0",
"prettier": "~1.19.1",
"sinon": "^7.2.3",
"unexpected": "^11.0.1",
"unexpected-sinon": "^10.11.0",
"unexpected-snapshot": "^1.0.2"
},
"engines": {
"node": ">= 6.0.0"
},
"files": [
"bin",
"src"
],
"keywords": [
"check",
"coverage",
"dependency",
"test"
],
"license": "MIT",
"scripts": {
"coverage": "nyc --reporter lcov --reporter text npm test",
"lint": "eslint .",
"test": "mocha",
"test-offline": "mocha -i -g @integration"
}
}