-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.75 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": "titanium-vue",
"version": "0.1.0",
"description": "Vue.js integration for Titanium",
"main": "dist/titanium-vue.runtime.common.js",
"module": "dist/titanium-vue.runtime.esm.js",
"scripts": {
"build": "node scripts/build.js",
"dev": "rollup -c scripts/config.js --environment TARGET:titanium-full-cjs",
"dev:runtime": "rollup -w -c scripts/config.js --environment TARGET:titanium-runtime-esm",
"dev:compiler": "rollup -w -c scripts/config.js --environment TARGET:titanium-compiler",
"lint": "eslint platform scripts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Axway, Inc. <[email protected]>",
"contributors": [
"Jan Vennemann <[email protected]> (https://github.com/janvennemann)"
],
"keywords": [
"titanium",
"vue"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/appcelerator/titanium-vue.git"
},
"bugs": {
"url": "https://github.com/appcelerator/titanium-vue/issues"
},
"homepage": "https://github.com/appcelerator/titanium-vue#readme",
"dependencies": {
"titanium-navigator": "^0.2.0",
"titanium-vdom": "^0.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.1",
"eslint-config-axway": "^4.3.0",
"rollup": "^1.20.1",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.0.0",
"vue": "^2.6.10"
}
}