-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "validate-cache",
"version": "0.1.0",
"description": "A Object and String validation for Cache-Control Header",
"repository": {
"type": "git",
"url": "git+https://github.com/luanmuniz/validate-cache.git"
},
"engines": {
"yarn": "NO LONGER USED - Please use npm"
},
"author": "Luan Muniz <luan@luanmuniz.com.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luanmuniz/validate-cache/issues"
},
"main": "index.js",
"scripts": {
"preversion": "git pull && rm -rf ./node_modules/ && npm install && npm test",
"postversion": "git push && npm publish --access=public && git push --tags",
"precommit-msg": "echo 'Pre-commit checks...'",
"postinstall": "bigbang update",
"test": "npm run eslint && npm run test-cov",
"eslint": "eslint --ignore-path .npmignore **/*.js --quiet",
"eslint:fix": "npm run eslint -- --fix",
"jest": "jest test --notify --config=jestrc.json",
"test-cov": "npm run jest -- --coverage",
"start": "node index.js",
"commit": "git cz -s",
"sendToConveralls": "npm run test-cov -- --coverageReporters=text-lcov | coveralls"
},
"pre-commit": [
"precommit-msg",
"test"
],
"devDependencies": {
"commitizen": "3.0.5",
"coveralls": "3.0.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.1",
"eslint-config-luanmuniz": "0.2.1",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jest": "21.27.1",
"jest": "23.1.0",
"jest-extended": "0.7.2",
"pre-commit": "1.2.2",
"rewire": "4.0.1"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}