-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.62 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
{
"name": "bisheng-plugin-typescript-interface",
"version": "1.1.1",
"description": "transform typescript interface comment to document",
"pre-commit": [
"lint",
"cov"
],
"files": [
"lib"
],
"egg": {
"typescript": true
},
"devDependencies": {
"@types/jest": "~23.3.2",
"@types/node": "~10",
"@types/power-assert": "^1.5.0",
"commitizen": "^3.0.4",
"conventional-changelog-cli": "^2.0.12",
"cz-conventional-changelog": "^2.1.0",
"egg-bin": "^4.11.0",
"egg-ts-helper": "^1.22.1",
"power-assert": "^1.6.1",
"pre-commit": "^1.2.2",
"rimraf": "~2.6.2",
"tslint": "^5.12.1",
"typescript": "~3.1.0"
},
"scripts": {
"commit": "git-cz",
"clean": "rimraf lib dist coverage",
"dev": "npm run clean && tsc --watch",
"test-local": " egg-bin test",
"debug": "egg-bin debug",
"build": "npm run clean && tsc --build tsconfig.build.json",
"lint": "tslint --project tsconfig.json",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov && tsc --build tsconfig.build.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"preversion": "yarn ci",
"postversion": "yarn changelog && git commit -m \"chore: update changelog.\"",
"pre-publish": "npm run changelog && npm run build"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"author": "DiamondYuan",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.3.3",
"@babel/parser": "^7.3.3",
"@babel/types": "^7.3.3",
"mark-twain": "^2.0.3"
}
}