forked from approvals/Approvals.NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.88 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.88 KB
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
{
"name": "approvals",
"description": "Approval Tests Library - Capturing Human Intelligence",
"version": "3.0.2",
"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": {
"test": "gulp",
"install": "node install_dependencies.js",
"release": "np"
},
"dependencies": {
"callsite": "^1.0.0",
"chalk": "^2.4.1",
"diff": "^3.2.0",
"event-stream": "^3.1.5",
"file-type": "^4.1.0",
"glob": "^7.1.1",
"js-yaml": "^3.2.2",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"mkdirp": "^0.5.0",
"msee": "^0.3.3",
"shelljs": "^0.8.2",
"temp": "^0.8.3",
"user-home": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^3.8.11",
"gulp-coveralls": "^0.1.3",
"gulp-eslint": "^5.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^6.0.0",
"gulp-watch": "^5.0.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"np": "^3.0.4",
"pre-commit": "^1.2.2",
"sinon": "^6.3.4"
},
"keywords": [
"Approve",
"Approvals",
"ApprovalTests",
"Approval Tests",
"Mocha",
"Test",
"Testing",
"Verification",
"Verify"
]
}