-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "vuejs-redux",
"version": "2.4.1",
"scripts": {
"build": "NODE_ENV=production && rollup --config rollup.config.js",
"format": "prettier --config ./.prettierrc.js --write './**/*.{js,vue,jsx}'",
"jest": "NODE_ENV=testing jest",
"lint": "prettier --config ./.prettierrc.js --list-different './**/*.{js,vue}'",
"precommit": "lint-staged",
"prepublish": "yarn run build",
"test": "yarn lint && yarn jest"
},
"description": "Simple but functional binding between Vuejs and Redux",
"main": "bundle.js",
"module": "bundle.es.js",
"repository": "https://github.com/titouancreach/vuejs-redux",
"author": "Titouan CREACH <titouan.creach@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.8.0",
"husky": "^2.2.0",
"jest": "^29.2.0",
"lint-staged": "^8.1.6",
"prettier": "1.17.0",
"redux": "^4.0.1",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"vue": "^2.6.10",
"vue-jest": "^4.0.0-beta.2",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.vue$": "<rootDir>/node_modules/vue-jest"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier --config ./.prettierrc.js --write",
"git add"
]
}
}