-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
101 lines (101 loc) · 2.41 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
98
99
100
101
{
"name": "approvals",
"description": "Approval Tests Library - Capturing Human Intelligence",
"version": "7.1.3",
"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",
"lint": "eslint './lib/**/*.js' './test/**/*.js'",
"release": "np",
"mocha": "mocha 'test/**/*[Tt]ests.js'",
"coverage": "nyc npm run mocha"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"callsite": "^1.0.0",
"diff": "^7.0.0",
"event-stream": "^4.0.1",
"file-type": "^12.4.2",
"glob": "^11.0.0",
"jest": "^29.1.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"marked": "^14.1.3",
"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/chai": "^4.3.19",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"chai": "^4.5.0",
"coveralls": "^3.1.0",
"eslint": "^8.57.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": "^17.0.0",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.2",
"sinon": "^19.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"keywords": [
"Approve",
"Approvals",
"ApprovalTests",
"Approval Tests",
"Mocha",
"Test",
"Testing",
"Verification",
"Verify"
]
}