forked from approvals/Approvals.NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.28 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "approvals",
"description": "Approval Tests Library - Capturing Human Intelligence",
"version": "6.2.4",
"homepage": "http://approvaltests.com",
"author": {
"name": "Jason Jarrett",
"url": "http://staxmanade.com"
},
"contributors": [
{
"name": "Llewellyn Falco"
},
{
"name": "Jason Jarrett (http://staxmanade.com)"
}
],
"repository": {
"type": "git",
"url": "https://github.com/approvals/Approvals.NodeJS.git"
},
"bugs": {
"url": "https://github.com/approvals/Approvals.NodeJS/issues"
},
"license": "Apache-2.0",
"main": "lib/Approvals",
"bin": {
"approvals": "./bin/index.js"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"build": "tsc",
"test": "gulp && jest",
"test2": "npm run mocha && npm run lint",
"install": "node install_dependencies.js",
"lint": "eslint './lib/**/*.js' './test/**/*.js'",
"release": "np",
"mocha": "mocha 'test/**/*[Tt]ests.js'",
"coverage": "nyc npm run mocha"
},
"dependencies": {
"callsite": "^1.0.0",
"chalk": "^4.1.0",
"diff": "^5.2.0",
"event-stream": "^4.0.1",
"file-type": "^12.4.2",
"glob": "^10.3.12",
"jest": "^29.1.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"marked": "^12.0.1",
"marked-terminal": "^7.0.0",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"natives": "^1.1.6",
"shelljs": "^0.8.4",
"temp": "^0.9.4",
"ts-jest": "^29.0.3"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"coveralls": "^3.1.0",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"gulp": "^5.0.0",
"gulp-eslint": "^6.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-load-plugins": "^2.0.7",
"gulp-mocha": "^9.0.0",
"gulp-watch": "^5.0.1",
"jsdoc-to-markdown": "^8.0.1",
"mocha": "^10.4.0",
"np": "^10.0.2",
"npm-check-updates": "^16.14.18",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.3"
},
"keywords": [
"Approve",
"Approvals",
"ApprovalTests",
"Approval Tests",
"Mocha",
"Test",
"Testing",
"Verification",
"Verify"
]
}