-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "commit-editor-cli",
"version": "1.1.0",
"description": "",
"bin": "build/bin/serve-commit-editor-prod.js",
"author": {
"email": "thomas@wtho.de",
"name": "Thomas Wirth",
"url": "https://github.com/wtho"
},
"repository": {
"type": "git",
"url": "https://github.com/wtho/commit-editor"
},
"homepage": "https://github.com/wtho/commit-editor",
"keywords": [
"commit-editor",
"conventional-commits",
"commitlint",
"semantic commit messages",
"semantic commits",
"semantic-release"
],
"license": "MIT",
"scripts": {
"test": "echo \"no test yet specified\"",
"run-dev": "./src/bin/serve-commit-editor-dev.js",
"run-build": "node ./build/bin/serve-commit-editor-prod.js",
"build": "rimraf ./build && tsc -p ./tsconfig.build.json",
"prepublish": "npm run test && npm run build"
},
"dependencies": {
"node-static": "^0.7.11",
"open": "^8.4.0",
"ts-node": "^10.5.0",
"tslib": "^2.3.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node-static": "^0.7.7",
"@types/ws": "^8.2.2",
"jest": "^28.0.2",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3"
}
}