-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "leite",
"version": "0.2.0",
"description": "Gerador de dados brasileiros aleatórios",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"test": "ava -v && xo",
"coverage": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idwall/leite.git"
},
"author": "raphaelgmelo",
"license": "MIT",
"bugs": {
"url": "https://github.com/idwall/leite/issues"
},
"homepage": "https://github.com/idwall/leite#readme",
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^3.0.2",
"husky": "^0.13.3",
"lint-staged": "^3.4.2",
"nyc": "^13.1.0",
"prettier": "^1.3.1",
"xo": "^0.18.2"
},
"dependencies": {
"moment": "^2.17.0",
"underscore": "^1.8.3"
},
"xo": {
"semicolon": false,
"space": true,
"esnext": true,
"rules": {
"no-mixed-operators": 0,
"object-curly-spacing": 0
}
},
"lint-staged": {
"*.js": [
"npm run test",
"prettier --semi false --single-quote --write",
"git add"
]
}
}