-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "proportional-scale",
"version": "0.0.0-development",
"description": "Proportionally scales a rectangle",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/dzucconi/proportional-scale",
"author": "dzucconi <[email protected]>",
"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": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@types/jest": "26.0.23",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.8",
"jest": "26.6.3",
"semantic-release": "17.4.3",
"ts-jest": "26.5.6",
"typescript": "3.9.9"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}