-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 971 Bytes
/
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
{
"name": "quickly-build",
"version": "1.1.5",
"description": "mistong web local build script.",
"main": "dist/cjs.js",
"bin": "./bin/quickly-build.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "father build",
"pre:pub": "npm run build && npm version patch",
"pub": "npm run pre:pub && npm publish",
"test": "node test.js 1111"
},
"files": [
"/bin",
"/dist",
"/temp",
"README.md"
],
"keywords": [
"mistong",
"web",
"build",
"simple-git"
],
"author": "mistong-lhb",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.4",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"father": "^2.30.13",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"chalk": "^4.1.2",
"rimraf": "^3.0.2",
"simple-git": "^2.47.0"
}
}