This repository has been archived by the owner on Jul 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "vue-spine",
"version": "0.0.4",
"description": "Vuex based models ready for usage in Vue.",
"module": "dist/vue-spine.esm.js",
"main": "dist/vue-spine.js",
"scripts": {
"build": "npm run build:main && npm run build:esm",
"build:main": "rollup -c build/rollup.config.js && uglifyjs dist/vue-spine.js --compress dead_code=false -m --comments -o dist/vue-spine.min.js",
"build:esm": "rollup -c build/rollup.config.js --environment ESM",
"lint": "eslint src test",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thorsteneckel/vue-spine.git"
},
"keywords": [
"vue",
"vuex",
"spine",
"models"
],
"author": "Thorsten Eckel",
"license": "MIT",
"bugs": {
"url": "https://github.com/thorsteneckel/vue-spine/issues"
},
"homepage": "https://github.com/thorsteneckel/vue-spine#readme",
"dependencies": {
"vue": "^2.2.6",
"vuex": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.0.1",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-replace": "^1.1.1",
"uglify-js": "^2.7.5"
}
}