-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.95 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": "unexpected-check",
"description": "Property based testing plugin for unexpected",
"author": "Sune Simonsen",
"license": "MIT",
"repository": "git://github.com/unexpectedjs/unexpected-check.git",
"version": "3.2.0",
"main": "lib/unexpected-check.js",
"scripts": {
"changelog": "offline-github-changelog > CHANGELOG.md",
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha",
"test-docs": "mocha documentation/**/*.md",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples",
"preversion": "npm run lint && npm run test",
"postversion": "npm run changelog && git add CHANGELOG.md && git commit --allow-empty -m 'Update changelog' && deploy-site"
},
"dependencies": {
"escodegen": "^2.0.0",
"esprima": "^4.0.0",
"estraverse": "^5.2.0",
"ignore": "^5.0.3",
"pkg-up": "^3.0.1"
},
"peerDependencies": {
"chance-generators": "^3.0.0",
"unexpected": "^10.40.0 || ^11.0.0-4 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"chance-generators": "^3.5.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"lodash.escape": "^4.0.1",
"lodash.unescape": "^4.0.1",
"mocha": "^9.1.3",
"offline-github-changelog": "^1.2.0",
"prettier": "~2.5.1",
"serve": "^11.0.0",
"unexpected": "^13.0.0",
"unexpected-documentation-site-generator": "^6.1.0",
"unexpected-markdown": "^4.1.1",
"unexpected-stream": "^5.1.0"
},
"keywords": [
"property",
"testing",
"testing",
"unexpected"
]
}