-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "perjury",
"version": "1.1.4",
"license": "Apache-2.0",
"description": "testing framework with similar structure to vows.js",
"keywords": [
"unit test",
"vows",
"test"
],
"author": {
"name": "Evan Prodromou",
"email": "[email protected]"
},
"main": "lib/index.js",
"bin": "./bin/perjury.js",
"scripts": {
"lint": "eslint bin/*.js lib/*.js test/*.js",
"test": "node test/standalone.js && node bin/perjury.js test/test-*.* && (check-node-version --node '< 7.10.1' --quiet || node bin/perjury.js test/atest-*.js)"
},
"directories": {
"lib": "./lib"
},
"repository": "fuzzy-ai/perjury",
"dependencies": {
"async": "^2.6.0",
"coffeescript": "^1.12.7",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"vows": "^1.0.0-alpha.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"check-node-version": "^3.2.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"util-promisify": "^2.1.0"
},
"engines": {
"node": ">=4 <=10"
}
}