-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "vue-entity-adapter-plus",
"version": "1.0.1",
"description": "Package to maintain entities for vuex.",
"private": false,
"keywords": ["Vue", "Vuex", "State Management", "Entity Adapter", "Flux"],
"scripts": {
"start": "yarn build && node dist/bundle.js",
"build": "webpack --config webpack.config.js",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandrohaiden/vue-entity-adapter-plus.git"
},
"author": "Manu Bhardwaj",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandrohaiden/vue-entity-adapter-plus/issues"
},
"homepage": "https://github.com/sandrohaiden/vue-entity-adapter-plus#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@types/jest": "^24.0.11",
"babel-esm-plugin": "^0.4.0",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"jest": "^24.5.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"lodash": "^4.17.11"
}
}