-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "kbd-prettier",
"version": "0.0.0",
"description": "A tool for reformatting your qmk keyboard layouts.",
"bin": "dist/commonjs/bin/kbd-prettier.js",
"main": "dist/commonjs/src/index.js",
"module": "dist/esm/src/index.js",
"files": [
"dist",
"docs",
"README.md"
],
"scripts": {
"build": "npm run build:commonjs",
"build:commonjs": "tsc -build tsconfig.commonjs.json",
"build:commonjs:watch": "tsc -build tsconfig.commonjs.json -w",
"build:esm": "tsc -build tsconfig.esm.json",
"build:esm:watch": "tsc -build tsconfig.esm.json -w",
"commit": "git-cz",
"docs": "./node_modules/.bin/typedoc --tsconfig tsconfig.commonjs.json --out ./docs",
"lint": "tslint -p tsconfig.commonjs.json",
"prettify": "prettier --write src/**/*{.ts,.md}",
"semantic-release": "semantic-release",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "[email protected]:blakedietz/kbd-prettier.git"
},
"author": "bdietz",
"license": "MIT",
"devDependencies": {
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.9",
"@semantic-release/npm": "^5.1.4",
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"semantic-release": "16.0.0-beta.9",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typedoc": "^0.14.2",
"typescript": "^3.2.2"
},
"dependencies": {
"commander": "^2.19.0"
},
"config": {
"loglevel": "verbose",
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && npm run test && lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write",
"git add"
]
}
}