-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 890 Bytes
/
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
{
"name": "vuemix",
"version": "2.0.0",
"description": "Stupid simple store library for mixin based state management in Vue.js",
"main": "dist/vuemix.dist.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbaeg/vuemix.git"
},
"keywords": [
"vue",
"vuejs",
"vuemix",
"store",
"state",
"mixin",
"management"
],
"author": "Tony Baeg",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbaeg/vuemix/issues"
},
"homepage": "https://github.com/tbaeg/vuemix#readme",
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-preset-env": "1.6.0",
"webpack": "3.4.1"
}
}