This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "weex-previewer",
"version": "1.5.1",
"description": "a tool help user to preview their weex files",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && mocha test/*.test.js",
"lint": "eslint src --fix",
"build": "babel src --out-dir lib",
"dev": "babel src --out-dir lib --watch",
"prepublish": "npm run build && npm run test",
"postinstall": "node ./lib/hook/post-install.js"
},
"bin": {
"weex-previewer": "./bin/weex-previewer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weexteam/weex-previewer.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-preset-stage-0": "^6.24.1",
"chalk": "^1.1.3",
"commander": "^2.13.0",
"detect-port": "^1.2.1",
"dns": "^0.2.2",
"exit": "^0.1.2",
"fs-extra": "^0.30.0",
"http-server": "^0.9.0",
"ip": "^1.1.5",
"opener": "^1.4.1",
"path": "^0.12.7",
"request": "^2.83.0",
"weex-builder": "^0.3.19",
"weex-vue-render": "^0.12.21",
"ws": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.2.1",
"browserify": "^13.3.0",
"eslint": "^4.17.0",
"expect.js": "^0.2.0",
"karma": "^1.4.0",
"mocha": "^3.2.0",
"vinyl-source-stream": "^1.1.0"
},
"bugs": {
"url": "https://github.com/weexteam/weex-previewer/issues"
},
"homepage": "https://github.com/weexteam/weex-previewer#readme",
"changelog": {
"messages": [
"Rewrite weex preview help infomation.",
"Fix https://github.com/weexteam/weex-toolkit/issues/373."
]
}
}