This repository has been archived by the owner on Feb 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "adviser-plugin-audit-npm",
"version": "0.0.3",
"description": "Audit npm plugin for adviser",
"main": "src/index.js",
"scripts": {
"test": "jest --watch",
"test-ci": "jest --ci && npm run linters && npm run size && npm run audit",
"size": "bundlesize",
"linters": "eslint './src/**/*.js'",
"audit": "audit-ci --high",
"release": "standard-version"
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.5.0"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"audit-ci": "1.3.1",
"babel-eslint": "10.0.1",
"bundlesize": "0.17.1",
"envinfo": "7.0.0",
"eslint": "5.13.0",
"eslint-config-jam3": "2.0.0",
"eslint-config-prettier": "4.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.2.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"husky": "1.3.1",
"jest": "24.1.0",
"lint-staged": "8.1.4",
"prettier": "1.16.4",
"standard-version": "4.4.0"
},
"bundlesize": [
{
"path": "src/index.js",
"maxSize": "3 kB"
}
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**"
]
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"__tests__/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "echo 'Pre-commit checks...' && lint-staged",
"pre-push": "echo 'Pre-push checks...' && npm run test-ci",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"adviser": "0.0.1"
},
"dependencies": {
"requireindex": "^1.2.0",
"adviser": "0.0.1"
}
}