-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.53 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nat-recorder",
"version": "1.0.1",
"main": "./js/build/main.js",
"description": "Nat.js module for weex: Recorder",
"license": "MIT",
"WeexSDKVersoin": "0.16.0",
"ios": {
"type": "pod",
"name": "WeexNatRecorder",
"version": "1.0.0"
},
"android": {
"type": "maven",
"groupId": "com.instapp.nat",
"name": "weex-plugin-recorder",
"version": "1.0.1"
},
"keywords": [
"nat",
"weex",
"hybrid",
"webcomponent",
"appframework",
"mvvm",
"javascript",
"webkit",
"v8",
"jscore",
"html5",
"android",
"ios"
],
"engines": {
"node": ">=4"
},
"scripts": {
"dev": "webpack --watch --config build/webpack.config.js",
"build": "webpack --config build/webpack.config.js",
"start:web": "npm run build && npm run serve & npm run dev:examples:web",
"start:native": "npm run build && npm run serve & npm run dev:examples",
"dev:examples": "webpack --watch --config build/webpack.examples.config.js",
"dev:examples:web": "webpack --watch --config build/webpack.examples.web.config.js",
"build:examples": "webpack --config build/webpack.examples.config.js",
"build:examples:web": "webpack --config build/webpack.examples.web.config.js",
"copy:examples": "rm -rf .examples/android/app/src/main/assets/* && cp -vrf ./examples/build/* ./android/app/src/main/assets/ &&rm -rf .examples/ios/bundlejs/* && cp -vrf ./examples/build/* .examples/ios/bundles/",
"lint": "eslint html5",
"serve": "serve ./ -p 12580"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-runtime": "^6.11.6",
"babel-eslint": "^7.1.1",
"cross-spawn": "^4.0.0",
"eslint": "^2.11.1",
"http-server": "^0.9.0",
"json-loader": "^0.5.4",
"reify": "^0.3.8",
"rollup": "^0.36.0",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^5.0.4",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-postcss": "^0.2.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.4",
"webpack": "^1.13.1",
"weex-loader": "^0.4.0",
"weex-vdom-tester": "^0.2.0",
"style-loader": "^0.13.1",
"vue-loader": "^10.3.0",
"css-loader": "^0.26.1",
"vue": "^2.1.10",
"vue-template-compiler": "^2.1.10"
}
}