-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "vue-script-parser",
"version": "0.0.1",
"description": "vue sfc parser",
"main": "lib/index.js",
"author": "汤睿甲 <tang413732712@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/soouup/vue-script-parser"
},
"scripts": {
"start": "tsc && node lib/index",
"build": "tsc",
"watch": "tsc --watch"
},
"dependencies": {
"@babel/parser": "^7.3.3",
"@babel/traverse": "^7.2.3",
"@babel/types": "^7.3.3",
"vue": "^2.6.7",
"vue-template-compiler": "^2.6.7"
},
"devDependencies": {
"@types/babel__generator": "^7.0.2",
"@types/babel__traverse": "^7.0.6",
"@types/node": "^11.9.5",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.1",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"typescript": "^3.3.3333"
},
"eslintConfig": {
"env": {
"node": true
},
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-undef": "off",
"no-unused-vars": "off",
"strict": "off"
},
"extends": [
"standard"
]
},
"eslintIgnore": [
"lib"
]
}