forked from nativescript-vue/nativescript-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.59 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
{
"name": "nativescript-vue",
"version": "0.1.5",
"description": "NativeScript and Vue integration",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"dev": "rollup -c -w",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rigor789/nativescript-vue.git"
},
"keywords": [
"vuejs",
"nativescript",
"integration"
],
"author": "rigor789",
"license": "MIT",
"bugs": {
"url": "https://github.com/rigor789/nativescript-vue/issues"
},
"homepage": "https://github.com/rigor789/nativescript-vue#readme",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
},
"plugin": {
"vue": "true",
"pan": "false",
"core3": "true",
"category": "Developer"
}
},
"dependencies": {
"vue": "2.3.0"
},
"peerDependencies": {
"tns-core-modules": "^3.0.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.4.0",
"jest": "^19.0.2",
"jest-junit": "^1.5.1",
"rollup": "^0.41.6",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-resolve-aliases": "^0.2.0",
"rollup-watch": "^3.2.2",
"tns-core-modules": "^3.0.0"
},
"jest": {
"verbose": true,
"modulePaths": [
"<rootDir>/platform/nativescript"
],
"collectCoverage": true,
"testResultsProcessor": "./node_modules/jest-junit"
}
}