-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "vows",
"version": "1.0.0-alpha.1",
"license": "Apache-2.0",
"description": "testing framework",
"keywords": [
"unit test",
"vows",
"test"
],
"author": {
"name": "Evan Prodromou",
"email": "evan@fuzzy.ai"
},
"main": "lib/index.js",
"bin": "./bin/vows.js",
"scripts": {
"lint": "eslint bin/*.js lib/*.js test/*.js",
"test": "node test/standalone.js && node bin/vows.js test/test-*",
"test-coverage": "nyc -r lcov npm test"
},
"directories": {
"lib": "./lib"
},
"files": [
"bin/*",
"lib/*",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"repository": "vowsjs/vows",
"dependencies": {
"async": "^3.2.0",
"coffeescript": "^1.12.7",
"debug": "^4.1.1",
"lodash": "^4.17.11",
"yargs": "^11.1.0"
},
"devDependencies": {
"eslint": "^7.3.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nyc": "^15.1.0",
"util-promisify": "^2.1.0"
},
"engines": {
"node": ">=9 <=14"
}
}