-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "vue-migration-helper",
"description": "CLI tool to aid in migration from Vue 1.x to 2.0",
"author": "Chris Fritz",
"license": "MIT",
"version": "1.1.8",
"main": "index.js",
"bin": {
"vue-migration-helper": "index.js"
},
"scripts": {
"lint": "eslint .",
"test": "JASMINE_CONFIG_PATH=jasmine.json jasmine"
},
"dependencies": {
"chalk": "^1.1.3",
"glob": "^7.0.6",
"graceful-fs": "^4.1.6",
"lodash.camelcase": "^4.3.0",
"recursive-readdir-sync": "^1.0.6",
"request": "^2.75.0",
"semver": "^5.3.0",
"split": "^1.0.0"
},
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.0.0",
"jasmine": "2.4.1",
"rewire": "^2.5.2",
"strip-ansi": "^3.0.1"
},
"eslintConfig": {
"extends": "vue",
"globals": {
"jasmine": false,
"describe": false,
"fdescribe": false,
"it": false,
"fit": false,
"expect": false,
"beforeEach": false,
"afterEach": false,
"spyOn": false,
"createRuleChecker": true,
"runMigrationHelper": true,
"catchLog": true
}
},
"engines": {
"node": ">=4.0.0"
}
}