-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
54
55
56
57
58
59
60
{
"name": "verify-it",
"version": "2.3.3",
"description": "Randomised test property/data generation for NodeJS",
"keywords": [
"testing",
"test",
"randomization",
"random",
"data",
"property",
"generation",
"generator"
],
"main": "index.js",
"scripts": {
"test": "JUNIT_REPORT_PATH=test/test-reports/report.xml nyc --all --include=index.js --include=src/*.js --include=src/*/**.js --reporter=html --reporter=text mocha test/*.js test/**/*.js",
"posttest": "standard",
"check-dependencies": "scripts/spdx-non-copyleft.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/verify-it.git"
},
"author": "BBC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/verify-it/issues"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/bbc/verify-it#readme",
"dependencies": {
"random-js": "^2.1.0"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"license-checker": "^25.0.1",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"spdx-copyleft": "^1.0.0",
"standard": "^17.1.2",
"testdouble": "^3.20.2"
},
"standard": {
"globals": [
"describe",
"it",
"verify"
]
},
"files": [
"src",
"index.js",
"index.d.ts",
"LICENSE"
]
}