-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "vc2c",
"version": "2.2.0",
"author": "<yoyo930021>[email protected]",
"license": "MIT",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"config": {
"tags": [
"v1",
"v2",
"v3",
"v4"
]
},
"bin": {
"vc2c": "./bin/vc2c"
},
"engines": {
"node": ">=10.18"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/prettier": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"codecov": "^3.7.2",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.2.2",
"monaco-editor": "^0.20.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"semantic-release": "^17.2.3",
"ts-jest": "^26.1.4",
"typescript": "3.9.7",
"vue": "^2.6.11"
},
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc -p tsconfig.compile.json",
"test": "yarn build && jest --config jest.config.js",
"demo:prepare": "parcel build node_modules/monaco-editor/esm/vs/editor/editor.worker.js --no-source-maps -d demo-dist/ && parcel build node_modules/monaco-editor/esm/vs/language/typescript/ts.worker.js --no-source-maps -d demo-dist/",
"demo:build": "yarn demo:prepare && parcel build demo/index.html --no-source-maps -d demo-dist/ --public-url ./"
},
"dependencies": {
"commander": "^4.0.1",
"core-js": "^3.6.5",
"eslint": "^7.6.0",
"inquirer": "^7.3.3",
"prettier-eslint": "^11.0.0",
"ts-node": "^8.10.2",
"vue-template-compiler": "^2.6.11"
},
"repository": {
"type": "git",
"url": "https://github.com/yoyo930021/vc2c.git"
}
}