-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "gql-module-loader",
"version": "0.0.0-development",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run audit-report && npm audit || true",
"lint": "eslint lib/ -f node_modules/eslint-html-reporter/reporter.js -o out/eslint.html || true && eslint lib/",
"lint:fix": "eslint lib/ --fix",
"lint!": "npm run format && npm run lint:fix",
"format": "prettier --write lib/",
"audit-report": "npm audit --json | npm-audit-html -o tests/npm-audit.html",
"cm": "git-cz",
"semantic-release": "semantic-release",
"docs": "jsdoc lib/ README.md",
"prepare": "husky install"
},
"keywords": [
"graphql",
"module",
"loader",
"modules"
],
"author": "eventOne Labs <[email protected]>",
"repository": "eventOneHQ/gql-module-loader",
"license": "MIT",
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-html-reporter": "^0.7.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jsdoc": "^3.6.7",
"lint-staged": "^11.0.0",
"npm-audit-html": "^1.5.0",
"prettier": "^2.3.1",
"semantic-release": "^17.4.4"
},
"dependencies": {
"lodash": "^4.17.21"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"npm run lint!",
"git add"
]
}
}