-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.22 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nativescript-vue-dynamo",
"version": "0.1.0",
"description": "Nativescript-Vue Dynamic Component Router",
"main": "dist/nativescript-vue-dynamo.umd.js",
"module": "dist/nativescript-vue-dynamo.esm.js",
"unpkg": "dist/nativescript-vue-dynamo.js",
"files": [
"dist/*",
"src/*",
"types/*",
"LICENSE"
],
"typings": "types/index.d.ts",
"scripts": {
"build:dev": "cross-env NODE_ENV=development rollup --config build/rollup.config.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:umd": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format umd",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"test": "echo \"Error: no test specified\"",
"clean": "rimraf dist/*",
"preversion": "npm run clean && npm test",
"version": "npm run build && git add -A",
"postversion": "git push --tags origin master",
"prep:patch": "npm version patch -m \"build %s\"",
"prep:minor": "npm version minor -m \"build %s\"",
"prep:major": "npm version major -m \"build %s\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jawa-the-hutt/nativescript-vue-dynamo.git"
},
"keywords": [
"vue",
"nativescript",
"typescript",
"web",
"code share",
"dynamic component",
"router",
"navigation",
"vuex"
],
"author": "Gary Gambill",
"license": "MIT",
"bugs": {
"url": "https://github.com/jawa-the-hutt/nativescript-vue-dynamo/issues"
},
"homepage": "https://github.com/jawa-the-hutt/nativescript-vue-dynamo#readme",
"dependencies": {
"clone": "^2.1.2",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.2",
"vue-router": "^3.1.3",
"vuex": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.7.1",
"minimist": "^1.2.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-vue": "^5.0.0",
"tns-core-modules": "^6.0.7",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3",
"vue": "^2.6.10",
"vue-eslint-parser": "^6.0.3",
"vue-template-compiler": "^2.6.10"
}
}