-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
49
50
51
{
"name": "stickee-javascript-code-style",
"version": "2.0.0",
"description": "Stickee JavaScript code style",
"main": "dist/index.js",
"bin": {
"stickee-jcs": "dist/index.js"
},
"scripts": {
"build": "tsc",
"prestart": "$npm_execpath run build",
"start": "node dist/index.js",
"semantic-release": "semantic-release"
},
"author": "Paul Tibbetts <paul.tibbetts@stickee.co.uk>",
"license": "MIT",
"keywords": [
"stickee",
"javascript"
],
"dependencies": {
"chalk": "^4.1.0",
"commitizen": "^4.1.2",
"husky": "^4.2.5",
"js-beautify": "^1.12.0",
"ora": "^5.0.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/js-beautify": "^1.11.0",
"@types/node": "^14.0.27",
"cz-conventional-changelog": "^3.2.0",
"semantic-release": "^17.1.1",
"typescript": "^3.9.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/stickeeuk/javascript-code-style.git"
},
"bugs": {
"url": "https://github.com/stickeeuk/javascript-code-style/issues"
},
"homepage": "https://github.com/stickeeuk/javascript-code-style#readme"
}