-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "radhoc",
"version": "0.0.0-semantically-released",
"description": "Adds adhoc cases to your Redux reducer",
"main": "dist/index.js",
"author": "Kyle Shevlin <[email protected]> (http://kyleshevlin.com)",
"license": "MIT",
"files": [
"dist"
],
"module": "src/index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack -p --output-filename index.umd.min.js",
"lint": "eslint ./src",
"test": "jest --coverage",
"test:watch": "jest --watch",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"validate": "npm-run-all --parallel lint test build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "yarn run validate",
"commit-msg": "validate-commit-msg"
}
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"codecov": "^2.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"ghooks": "^2.0.0",
"jest": "^19.0.2",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.12.1",
"webpack": "^2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kyleshevlin/radhoc.git"
}
}