-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "configurable-arbitrary",
"version": "0.0.3",
"description": "QuickCheck Modules",
"main": "ConfigurableArbitrary.js",
"scripts": {
"test": "NODE_PATH=. nyc --reporter html --reporter text ava",
"docs": "jsdoc -c docs/jsdoc.json -r"
},
"ava": {
"files": [
"test/**/*.js",
"examples/**/test/**/*.js"
]
},
"nyc": {
"exclude": [
"**/node_modules/**",
"**/test/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rweda/configurable-arbitrary.git"
},
"author": "Redwood EDA (http://redwoodeda.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rweda/configurable-arbitrary/issues"
},
"homepage": "https://github.com/rweda/configurable-arbitrary#readme",
"optionalDependencies": {
"jsverify": "^0.8.2"
},
"dependencies": {
"lodash.merge": "^4.6.0",
"lodash.pickby": "^4.6.0"
},
"devDependencies": {
"ava": "^0.20.0",
"ava-verify": "0.0.1",
"docdash": "^0.4.0",
"jsdoc": "^3.5.5",
"jsverify": "^0.8.2",
"mockery": "^2.1.0",
"nyc": "^11.4.1",
"proxyquire": "^1.8.0",
"rewire": "^2.5.2",
"semver": "^5.4.1",
"sinon": "^2.4.1"
}
}