-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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
{
"name": "vue-apicloud-quickstart",
"version": "1.0.27",
"description": "a simple toolkit for developing app with vue.js in apicloud",
"main": "dist/index.js",
"files": [
"dist",
"assets",
"src",
"types"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"lint": "eslint --fix -c .eslintrc.js --ext .js,.ts ./src",
"prebuild": "npm run lint",
"prepublishOnly": "npm run build",
"test:js": "cd ./test/js && npm run serve",
"test:ts": "cd ./test/ts && npm run serve",
"test-i:js": "cd ./test/js && npm install",
"test-i:ts": "cd ./test/ts && npm install",
"test-build:js": "cd ./test/js && npm run build",
"test-build:ts": "cd ./test/ts && npm run build",
"test-g:js": "cd ./test/js && npm run generate",
"test-g:ts": "cd ./test/ts && npm run generate",
"test-wifi-start": "apicloud wifiStart --port 23457",
"test-wifi-end": "apicloud wifiStop --port 23457",
"test-sync:js": "apicloud wifiSync --project ./test/js --updateAll true --port 23457",
"test-sync:ts": "apicloud wifiSync --project ./test/ts --updateAll true --port 23457",
"test-i": "npm run test-i:ts",
"test": "npm run test:ts",
"test-build": "npm run test-build:ts",
"test-g": "npm run test-g:ts",
"test-sync": "npm run test-sync:ts"
},
"dependencies": {
"@types/js-base64": "^2.3.1",
"@types/node": "^13.9.2",
"axios": "^0.19.1",
"js-base64": "^2.5.1",
"vue": "^2.6.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"apicloud-cli": "^0.2.0",
"eslint": "^6.8.0",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w-xuefeng/vue-apicloud-quickstart.git"
},
"keywords": [
"vue",
"vue.js",
"apicloud",
"toolkit"
],
"author": "w-xuefeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/w-xuefeng/vue-apicloud-quickstart/issues"
},
"homepage": "https://github.com/w-xuefeng/vue-apicloud-quickstart#readme"
}