-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 885 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
{
"name": "vuex-remotedev",
"version": "0.0.4",
"description": "Inspecting vuex on Redux DevTools Extension / React Native Debugger",
"main": "lib/index.js",
"repository": "[email protected]:jhen0409/vuex-remotedev.git",
"author": "Jhen <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"vuex",
"vue-native",
"redux-devtools",
"redux-devtools-extension",
"remotedev",
"react-native",
"react-native-debugger"
],
"scripts": {
"test": "jest",
"build": "babel src/ --out-dir lib/ --ignore __tests__",
"prepublish": "yarn test && yarn build"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"remotedev": "^0.2.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"jest": "^23.1.0",
"vue": "^2.5.16",
"vuex": "^3.0.1"
}
}