forked from dubzzz/fast-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.91 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
61
62
63
64
65
{
"name": "fast-check",
"version": "1.3.0",
"description": "Property based testing framework for JavaScript (like QuickCheck)",
"main": "lib/fast-check.js",
"types": "lib/fast-check.d.ts",
"scripts": {
"prebuild": "ts-node prebuild/prebuild.ts",
"build": "tsc",
"build:publish": "tsc -p tsconfig.publish.json",
"webbuild": "browserify lib/fast-check.js --s fastcheck | uglifyjs -cm > lib/bundle.js",
"watch": "tsc -w",
"test": "npm run build && nyc mocha \"test/unit/**/*.spec.ts\"",
"e2e": "mocha \"test/e2e/**/*.spec.ts\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --options typedoc.json ./src/",
"format:check": "prettier --list-different \"**/*.ts\"",
"format:fix": "prettier --write \"**/*.ts\"",
"lint:check": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/fast-check.git"
},
"author": "Nicolas DUBIEN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/fast-check/issues"
},
"homepage": "https://github.com/dubzzz/fast-check#readme",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"lorem-ipsum": "^1.0.4",
"pure-rand": "^1.1.1"
},
"devDependencies": {
"@types/lorem-ipsum": "^1.0.2",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"browserify": "^16.2.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"prettier": "^1.13.7",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"uglifyjs": "^2.4.11"
},
"keywords": [
"property-based testing",
"end-to-end testing",
"unit testing",
"testing",
"quickcheck",
"jscheck",
"jsverify"
]
}