-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.37 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": "chained-config",
"version": "0.2.1",
"description": "Use a chaining API to generate and simplify the modification of configs",
"keywords": [
"chain",
"chainable",
"webpack-chain",
"config",
"configuration"
],
"author": "André Cruz <andre@moxy.studio>",
"homepage": "https://github.com/moxystudio/js-chained-config",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/js-chained-config.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"eslint": "^5.3.0",
"eslint-config-moxy": "^6.0.1",
"husky": "^0.14.3",
"jest": "^24.5.0",
"lint-staged": "^7.2.0",
"standard-version": "^4.4.0"
},
"dependencies": {
"class-is": "^1.1.0",
"deepmerge": "^2.1.1",
"lodash.wrap": "^4.1.1"
}
}