-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "weex-vue-migration",
"version": "0.2.5",
"description": "migration from *.we file to *.vue file",
"author": "songsiqi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/songsiqi/weex-vue-migration.git"
},
"main": "index.js",
"bin": {
"weex-vue-migrate": "./bin/migrator.js"
},
"license": "GPL-3.0",
"keywords": [
"weex",
"vue"
],
"scripts": {
"prepare": "npm run clear && npm run lint && npm run build",
"pretest": "npm run prepare",
"prepublish": "npm run prepare",
"build": "buble -i src -o lib",
"dev": "gazeer -p \"src/**/*.js\" -c \"npm run lint && npm run build\"",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"test": "mocha",
"test:dev": "mocha -w",
"clear": "rm -Rf lib/*",
"cover": "isparta cover --report text --report lcov _mocha -- --reporter dot"
},
"dependencies": {
"babel-core": "~6.17.0",
"babel-template": "^6.16.0",
"babel-types": "~6.16.0",
"chalk": "~1.1.3",
"commander": "~2.9.0",
"fs-extra": "~0.30.0",
"parse5": "~3.0.0"
},
"devDependencies": {
"buble": "^0.13.2",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"gazeer": "^0.1.1",
"isparta": "~4.0.0",
"mocha": "^3.0.2"
}
}