-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "@vuefront/cli",
"version": "0.1.5",
"description": "VueFront CLI",
"bin": {
"vuefront": "./bin/cli.js",
"vf": "./bin/cli.js"
},
"keywords": [
"vuefront"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/vuefront/vuefront-cli.git"
},
"author": "VueFront",
"license": "ISC",
"bugs": {
"url": "https://github.com/vuefront/vuefront-cli/issues"
},
"homepage": "https://github.com/vuefront/vuefront-cli#readme",
"scripts": {
"build": "tsc",
"clean": "gulp clean:bundle",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint '{lib,commands,actions}/**/*.ts' --fix",
"start": "node bin/cli.js",
"prepack": "npm run build",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "jest --config test/jest-config.json",
"test:dev": "npm run clean && jest --config test/jest-config.json --watchAll",
"prerelease": "npm run build",
"release": "release-it"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "5.20.0",
"delete-empty": "^3.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"jest": "^28.0.2",
"prettier": "^2.6.2",
"release-it": "^15.0.0",
"typescript": "^4.6.3",
"vuefront": "^0.5.11"
},
"dependencies": {
"commander": "4.1.1",
"create-vuefront-app": "^0.6.1",
"lodash": "^4.17.21",
"sao": "^1.7.1",
"ts-jest": "27.1.4",
"ts-node": "^10.7.0"
}
}