-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "vuex-undo-redo",
"version": "1.1.4",
"description": "A Vue.js plugin to undo/redo mutations",
"main": "src/plugin.js",
"scripts": {
"build": "rimraf ./dist && webpack --config ./webpack.config.js",
"test": "jest"
},
"author": "Anthony Gore",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/anthonygore/vuex-undo-redo"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^6.10.4",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.9.2",
"jest": "^23.6.0",
"rimraf": "^2.6.1",
"vue": "^2.5.17",
"vue-jest": "^3.0.0",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"dependencies": {}
}