-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "vuex-alt",
"version": "0.0.8",
"description": "An alternative approach to Vuex helpers for accessing state, getters and actions that doesn't rely on string constants.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ejfrancis/Vuex-Alt.git"
},
"scripts": {
"test": "jest",
"build": "npm run test && npm run bundle",
"bundle": "rimraf dist/ && rollup --config rollup.config.js && babel dist/index-not-transpiled.js --out-file dist/index.js && rimraf dist/index-not-transpiled.js",
"prepush": "npm run test && npm run build"
},
"keywords": [
"Vue",
"Vuex",
"action",
"actions",
"plugin"
],
"author": "Evan Francis",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"rimraf": "^2.6.1",
"rollup": "^0.67.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {
"camelcase": "^4.1.0"
}
}