-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.64 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
{
"name": "humanization",
"version": "6.3.1",
"description": "To err is human",
"repository": "https://github.com/dzucconi/humanization",
"author": "dzucconi <[email protected]>",
"license": "MIT",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"clean": "rm -rf dist",
"commit": "yarn git-cz",
"compile": "yarn clean && tsc -p .",
"prepublishOnly": "yarn compile",
"semantic-release": "semantic-release",
"test": "jest",
"watch": "tsc -w -p ."
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/git": "7.0.18",
"@types/jest": "24.9.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "3.1.0",
"jest": "24.9.0",
"semantic-release": "15.14.0",
"ts-jest": "24.3.0",
"typescript": "3.9.9"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/lib"
],
"dependencies": {
"@types/seedrandom": "^2.4.28",
"seedrandom": "^3.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"dist/**/*.{js,css}",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}