forked from nadimtuhin/redux-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "redux-vue-connect",
"version": "1.0.0",
"description": "Vue Redux binding higher order component",
"author": "Sazzad Hossain Khan",
"contributor": "Sazzad Hossain Khan",
"repository": {
"type": "git",
"url": "https://github.com/itsazzad/redux-vue-connect.git"
},
"bugs": "https://github.com/itsazzad/redux-vue-connect/issues",
"homepage": "https://github.com/itsazzad",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "mocha \"./src/**/*.spec.js\" --compilers js:babel-core/register",
"test:watch": "npm test -- --watch",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"keywords": [
"vue",
"redux",
"vue-redux",
"redux-vue",
"redux-vue-connect",
"flux",
"immutable"
],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"expect": "^1.20.2",
"mocha": "^3.0.2"
},
"dependencies": {
"lodash": "^4.17.4"
}
}