-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "vuex-store-builder",
"version": "1.1.3",
"description": "Customizable utility functions to generate vuex stores, facilitating network requests.",
"main": "build/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d build --ignore '**/*.spec.js'",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"minify",
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Path-AI/vuex-store-builder.git"
},
"keywords": [
"vue",
"vuex",
"store"
],
"author": "Samuel Moore (@samoojj)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Path-AI/vuex-store-builder/issues"
},
"homepage": "https://github.com/Path-AI/vuex-store-builder#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-preset-minify": "^0.5.1",
"codecov": "^3.6.5",
"husky": "^3.0.4",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"watch": "^1.0.2"
},
"dependencies": {}
}