-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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": "jsverify-commands",
"version": "0.1.7",
"description": "Bring commands to JSVerify",
"main": "lib/jscCommands.js",
"scripts": {
"examples": "mocha --require babel-polyfill --require babel-register \"examples/**/*.js\"",
"compile": "babel src --out-dir lib --source-maps",
"test": "nyc --reporter=html --reporter=text mocha --require babel-polyfill --require babel-register \"test/**/*.js\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"codeclimate": "nyc report --reporter=text-lcov | codeclimate-test-reporter"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/dubzzz/jsverify-commands.git"
},
"author": "Nicolas DUBIEN <github@dubien.org>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/dubzzz/jsverify-commands/issues"
},
"homepage": "/~https://github.com/dubzzz/jsverify-commands#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"jsverify": "^0.8.3",
"lazy-seq": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"keywords": [
"property-based testing",
"end-to-end testing",
"ui testing",
"testing",
"quickcheck",
"commands",
"jsverify",
"quality-assurance"
]
}