-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.42 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
{
"name": "vusion-api",
"description": "Vusion Node.js API",
"version": "0.7.38",
"author": "Forrest <rainforest92@126.com>",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "mocha out/test/**/*.spec.js",
"test:test": "mocha out/test/**/*.test.js",
"test:one": "mocha",
"lint": "eslint ./src --fix",
"prepublishOnly": "npm run compile && git add .",
"ghpages": "typedoc --out docs --exclude 'src/test/**' src && touch ./docs/.nojekyll && vusion ghpages -d docs"
},
"main": "./out/index.js",
"repository": "vusion/vusion-api",
"bugs": {
"url": "http://github.com/vusion/vusion-api/issues"
},
"license": "MIT",
"keywords": [
"vusion",
"api"
],
"tags": [
"vusion",
"api"
],
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/generator": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/traverse": "^7.11.5",
"@babel/types": "^7.10.4",
"@types/axios": "^0.14.0",
"@types/babel__core": "^7.1.2",
"@types/babel__generator": "^7.6.0",
"@types/form-data": "^2.5.0",
"@types/fs-extra": "^8.0.0",
"@types/globby": "^9.1.0",
"@types/lodash": "^4.14.149",
"@types/markdown-it": "^10.0.0",
"@types/node": "^10.12.18",
"@types/pluralize": "^0.0.29",
"@types/prettier": "^1.18.2",
"@types/semver": "^6.0.0",
"@types/shelljs": "^0.8.5",
"@types/uslug": "^1.0.0",
"@types/yaml": "^1.2.0",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"chokidar": "^3.2.1",
"compressing": "^1.5.0",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"javascript-stringify": "^2.0.1",
"line-reader": "^0.4.0",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
"pluralize": "^8.0.0",
"postcss": "^6.0.23",
"prettier": "^1.18.2",
"readline": "^1.3.0",
"semver": "^6.1.1",
"shelljs": "^0.8.3",
"uslug": "^1.0.4",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"yaml": "^1.7.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-vusion": "^3.0.3",
"husky": "^3.0.4",
"mocha": "^5.2.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"typescript": "^4.5.1",
"vusion-hooks": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "node node_modules/vusion-hooks/pre-commit"
}
}
}