-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "vue-sfc-markdown-render",
"version": "0.1.2",
"main": "lib/index.js",
"repository": "[email protected]:lazyhero/vue-sfc-markdown-render.git",
"license": "MIT",
"scripts": {
"test": "jest --verbose",
"build": "yarn lint && rollup --config rollup.config.js",
"prepublishOnly": "yarn build",
"lint": "tslint --project tsconfig.json --fix",
"commit": "git-cz",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"files": [
"lib",
"src",
"test"
],
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.125",
"conventional-changelog-cli": "^2.0.21",
"jest": "^24.8.0",
"prettier": "^1.17.0",
"rollup": "^1.11.3",
"rollup-plugin-typescript2": "^0.21.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5"
}
}