-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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": "@dadi/api-validator",
"version": "2.0.0",
"description": "Validation package for DADI API",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "eslint --ext js,jsx . && prettier --check '**/*.{js,jsx,md,html,css}' && env NODE_ENV=test ./node_modules/.bin/istanbul cover --report cobertura --report text --report html --report lcov ./node_modules/mocha/bin/_mocha test",
"posttest": "node ./scripts/coverage.js",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html,css}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dadi/api-validator.git"
},
"keywords": [
"dadi",
"api",
"validator"
],
"author": "Eduardo Boucas <mail@eduardoboucas.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dadi/api-validator/issues"
},
"homepage": "https://github.com/dadi/api-validator#readme",
"devDependencies": {
"@commitlint/cli": "~7.1.0",
"@commitlint/config-conventional": "~7.1.1",
"@dadi/eslint-config": "^1.1.0",
"@dadi/prettier-config": "^1.1.0",
"coveralls": "latest",
"env-test": "~1.0.0",
"eslint": "^6.1.0",
"husky": "^0.13.4",
"istanbul": "~0.4.5",
"lint-staged": "^7.1.3",
"mocha": "~5.2.0",
"prettier": "^1.18.2",
"should": "~13.2.0",
"supertest": "~3.0.0"
},
"dependencies": {
"fecha": "^2.3.3"
}
}