forked from nativescript-vue/nativescript-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.44 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.44 KB
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
85
86
87
88
89
90
91
92
93
94
{
"name": "nativescript-vue",
"version": "0.1.23",
"description": "NativeScript and Vue integration",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"tdd": "jest --watch",
"dev": "rollup -c -w --o samples/app/nativescript-vue.js",
"samples": "node sample-runner.js",
"build": "rollup -c",
"precommit": "lint-staged",
"prettier": "prettier --no-semi --single-quote --write \"{{platform,__test__}/**/*.js,samples/app/*.js}\"",
"release": "node releaser.js",
"preversion": "npm test",
"version": "npm run build && git add -A && git add -f dist/index.js dist/index.js.map",
"postversion": "git push origin master && git push --tags && npm publish"
},
"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": {
"he": "^1.1.1",
"lint-staged": "^4.2.3",
"vue": "^2.5.2"
},
"peerDependencies": {
"tns-core-modules": "^3.0.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.4.0",
"chalk": "^2.1.0",
"husky": "^0.14.3",
"inquirer": "^3.3.0",
"jest": "^19.0.2",
"jest-junit": "^1.5.1",
"prettier": "^1.7.4",
"rollup": "^0.41.6",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.2.1",
"rollup-plugin-resolve-aliases": "^0.2.0",
"rollup-watch": "^3.2.2",
"tns-core-modules": "^3.2.0"
},
"jest": {
"verbose": true,
"modulePaths": [
"<rootDir>/platform/nativescript"
],
"collectCoverage": true,
"testResultsProcessor": "./node_modules/jest-junit"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"linters": {
"{{platform,__test__}/**/*.js,samples/app/*.js}": [
"prettier --write",
"git add"
]
}
}
}