-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "chance-path-object",
"description": "A Chance.js mixin to generate path objects.",
"version": "1.0.1",
"author": {
"name": "Michael Novotny",
"email": "manovotny@gmail.com",
"url": "htts://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/chance-path-object.git"
},
"keywords": [
"chance",
"generated",
"mixin",
"node",
"path",
"objects",
"random"
],
"engines": {
"node": ">=8.6.0",
"yarn": ">=1.0.0"
},
"main": "index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint . --ext .js --ext .json",
"prettier": "prettier --write \"**/*.{js,json,md,yml}\"",
"prettier:check": "prettier --check \"**/*.{js,json,md,yml}\"",
"test": "yarn lint && yarn prettier:check && yarn unit",
"unit": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"chance": "1.1.0"
},
"devDependencies": {
"eslint": "6.2.1",
"eslint-config-get-off-my-lawn": "5.0.1",
"husky": "3.0.5",
"jest": "24.9.0",
"lint-staged": "9.2.5",
"prettier": "1.18.2"
},
"peerDependencies": {
"chance": "^1.0.13"
}
}