-
Notifications
You must be signed in to change notification settings - Fork 296
/
Copy pathpackage.json
91 lines (91 loc) · 2.52 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
{
"name": "vue-native-core",
"version": "0.3.1",
"description": "Create mobile apps using vuejs",
"main": "packages/vue-native-core/index.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/GeekyAnts/vue-native-core.git"
},
"keywords": [
"vue",
"native",
"mobile"
],
"engines": {
"node": "^4.5 || >=5.10"
},
"engineStrict": true,
"author": "Geekyants (https://geekyants.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GeekyAnts/vue-native-core/issues"
},
"files": [
"src",
"packages",
"types/*.d.ts"
],
"scripts": {
"lint": "eslint src scripts",
"lint:fix": "eslint --fix src scripts",
"flow": "flow check",
"test:unit": "jest --config ./jest.config.json",
"test": "npm run lint && npm run flow && npm run test:unit",
"build": "node scripts/build.js",
"release": "bash scripts/release.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"homepage": "https://github.com/GeekyAnts/vue-native-core",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^6.9.0",
"babel-eslint": "^10.0.3",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-jest": "^26.0.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-vue-jsx": "^3.2.0",
"babel-preset-flow-vue": "^1.0.0",
"babel-preset-react": "^6.24.1",
"buble": "^0.19.8",
"change-case": "^3.0.1",
"cross-spawn": "^5.0.1",
"de-indent": "^1.0.2",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-prettier": "^3.1.1",
"flow-bin": "^0.39.0",
"hash-sum": "^1.0.2",
"he": "^1.1.0",
"husky": "^3.0.8",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"jest": "^26.0.1",
"js-beautify": "^1.6.14",
"lodash": "^4.17.20",
"lodash.template": "^4.4.0",
"lru-cache": "^4.0.2",
"prettier": "^1.18.2",
"react": "16.8.6",
"resolve": "^1.2.0",
"rollup": "^1.17.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-replace": "^2.2.0",
"serialize-javascript": "^3.1.0",
"typescript": "^2.1.6",
"uglify-js": "^3.6.0"
}
}