-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.02 KB
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
66
67
68
{
"name": "chance-generators",
"description": "Random generators based on changejs",
"license": "MIT",
"author": "Sune Simonsen",
"version": "3.5.3",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel --out-dir lib --quiet src",
"changelog": "offline-github-changelog > CHANGELOG.md",
"coverage": "istanbul cover node_modules/.bin/_mocha ./documentation/**/*.md ./src/**/*.js ./test/**/*.js",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"lint": "eslint ./src/",
"lint-staged": "lint-staged",
"prepare": "npm run lint && npm run build",
"test": "mocha ./documentation/**/*.md ./src/**/*.js ./test/**/*.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples",
"postversion": "npm run changelog && git add CHANGELOG.md && git commit --allow-empty -m 'Update changelog' && deploy-site.sh"
},
"dependencies": {
"chance": "1.0.16"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"es6-set": "^0.1.5",
"eslint": "^3.19.0",
"eslint-config-pretty-standard": "^1.0.0",
"imocha": "^0.3.0",
"istanbul": "^0.4.2",
"javascript-state-machine": "^2.3.5",
"lint-staged": "^4.0.3",
"mocha": "^3.5.3",
"offline-github-changelog": "^1.2.0",
"pre-commit": "^1.2.2",
"prettier": "~1.15.3",
"prettier-package-json": "^1.4.0",
"serve": "^13.0.2",
"unexpected": "^10.37.1",
"unexpected-documentation-site-generator": "^4.6.1",
"unexpected-generator": "^0.1.1",
"unexpected-markdown": "^1.7.4"
},
"keywords": [
"random",
"testing"
],
"lint-staged": {
"linters": {
"*.js": [
"eslint",
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
},
"pre-commit": "lint-staged"
}