-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 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
52
53
54
{
"name": "vm-test",
"version": "1.10.0",
"description": "for practive..",
"main": "src/index.js",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prettier": "prettier --write --no-semi {src,test}/**/*.ts",
"test": "npm run test",
"precommit": "lint-staged",
"prepush": "npm run prettier && npm run lint",
"push-tags-publish": "git push --follow-tags origin master; npm publish",
"release": "standard-version",
"npm-publish": "npm publish",
"github-release": "node build/github-release.js"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write --no-semi",
"git add"
]
},
"config": {
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vm-component/vm-test.git"
},
"keywords": [
"\\"
],
"author": "Hsiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/vm-component/vm-test/issues"
},
"homepage": "https://github.com/vm-component/vm-test#readme",
"devDependencies": {
"conventional-github-releaser": "^1.1.12",
"husky": "^0.14.3",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0",
"standard-version": "^4.2.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.5.2",
"validate-commit-msg": "^2.14.0"
}
}