-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "fast-check-examples",
"version": "1.0.0",
"description": "Property based testing examples based on fast-check",
"scripts": {
"format:check": "prettier --list-different \"**/*.js\"",
"format:fix": "prettier --write \"**/*.js\"",
"test:ava": "ava \"test-ava\"",
"test:jasmine": "jasmine",
"test:jest": "jest \"test-jest\"",
"test:tape": "node \"test-tape/example.spec.js\"",
"test": "mocha --require babel-polyfill --require babel-register \"test/**/test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/fast-check-examples.git"
},
"author": "Nicolas DUBIEN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/fast-check-examples/issues"
},
"homepage": "https://github.com/dubzzz/fast-check-examples#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"crypto-js": "^3.1.9-1",
"io-ts": "^1.3.0",
"is-thirteen": "^2.0.0",
"js-yaml": "^3.11.0",
"left-pad": "^1.3.0",
"query-string": "^6.1.0"
},
"devDependencies": {
"ava": "^0.25.0",
"ava-fast-check": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"fast-check": "^1.6.0",
"jasmine": "^3.1.0",
"jest": "^22.4.3",
"mocha": "^5.0.5",
"prettier": "^1.11.1",
"regenerator-runtime": "^0.11.1",
"tape": "^4.9.0"
}
}