-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.28 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
{
"name": "fp-util",
"version": "2.1.4",
"description": "Functional library for Javascript developers",
"main": "./index.js",
"scripts": {
"prepublish": "tsc",
"test": "ava",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"release": {
"debug": false
},
"repository": {
"type": "git",
"url": "https://github.com/minaseem/fp-util.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/minaseem/fp-util/issues"
},
"homepage": "https://github.com/minaseem/fp-util#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-register": "^6.18.0",
"cz-conventional-changelog": "^1.2.0",
"semantic-release": "^7.0.2",
"typescript": "^2.4.2",
"validate-commit-msg": "^2.8.2"
},
"ava": {
"require": "babel-register"
},
"babel": {
"presets": [
"es2015"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
]
}
}
}