-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.84 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "undo-redo-vuex",
"version": "1.4.0",
"scripts": {
"build": "rollup --compact -c",
"test:unit": "vue-cli-service test:unit",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "vue-cli-service lint"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@factorial/vuepress-theme": "^1.0.0-alpha.1",
"@types/jest": "^23.3.14",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-typescript": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-prettier": "^3.0.3",
"@vue/eslint-config-typescript": "^3.0.3",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-preset-minify": "^0.5.0",
"clean-webpack-plugin": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^7.2.2",
"node-sass": "^4.13.1",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"ts-jest": "^23.0.0",
"typescript": "^3.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.5.17",
"vuepress": "^1.3.0",
"vuex": "^3.1.1",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "yarn run lint && yarn test:unit"
}
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"keywords": [
"vuex",
"vue",
"undo/redo"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewbeng89/undo-redo-vuex.git"
},
"main": "dist/undo-redo-vuex.umd.min.js",
"module": "dist/undo-redo-vuex.esm.min.js"
}