-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "makit",
"version": "1.4.1",
"description": "Make in JavaScript done right!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"check": "npm run test && npm run lint",
"docs": "typedoc --out docs src && touch docs/.nojekyll",
"build": "tsc && chmod a+x dist/bin/*",
"watch": "tsc --watch",
"unit": "jest test/unit",
"e2e": "jest test/e2e",
"test": "jest test",
"coveralls": "jest --coverage && cat coverage/lcov.info | coveralls",
"coverage": "jest --coverage",
"version": "npm run build && npm run docs",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/makit.git"
},
"keywords": [
"Make",
"JavaScript",
"Done-Right"
],
"author": "harttle <yangjvn@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/searchfe/makit/issues"
},
"homepage": "https://github.com/searchfe/makit#readme",
"files": [
"bin",
"dist",
"index.d.ts",
"*.json",
"*.md"
],
"bin": {
"makit": "./dist/bin/makit.js"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-syntax-bigint": "^7.7.4",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.12.17",
"@babel/runtime": "^7.6.0",
"@jest/transform": "^24.9.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.8",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/memory-fs": "^0.3.2",
"@types/node": "^13.1.7",
"@types/treeify": "^1.0.0",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^24.9.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-jest": "^24.9.0",
"coveralls": "^3.0.7",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"md5": "^2.2.1",
"semantic-release": "^17.2.3",
"typedoc": "^0.15.0"
},
"dependencies": {
"chalk": "^4.0.0",
"extglob": "^3.0.0",
"is-glob": "^4.0.1",
"lodash": "^4.17.15",
"memory-fs": "^0.5.0",
"treeify": "^1.1.0",
"typescript": "^4.1.5",
"yargs": "^14.2.0"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"pacakge.json",
"docs",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}