forked from nhkrecord/nhk-record
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "nhk-record",
"version": "0.8.9",
"scripts": {
"build": "tsc -b tsconfig.json",
"commit": "cz",
"lint": "eslint src",
"start": "npm run build && node lib/src/index.js",
"test": "jest",
"coverage": "jest --coverage --no-cache",
"test:ci": "jest --ci"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"app-root-path": "^3.0.0",
"compare-func": "^2.0.0",
"hasha": "^5.2.2",
"micromatch": "^4.0.2",
"node-fetch": "^2.6.1",
"node-interval-tree": "^1.3.3",
"ramda": "^0.27.1",
"sanitize-filename": "^1.6.3",
"stream-to-promise": "^3.0.0",
"winston": "^3.3.3",
"yargs": "^16.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/app-root-path": "^1.2.4",
"@types/compare-func": "^1.3.0",
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"@types/ramda": "^0.27.33",
"@types/stream-to-promise": "^2.2.1",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"husky": "^9.0.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"semantic-release": "^23.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}