forked from cesalberca/jsday2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 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
{
"name": "advanced-javascript-patterns",
"version": "0.0.1",
"main": "index.js",
"repository": "https://www.github.com/cesalberca/advanced-javascript-patterns.git",
"author": "César Alberca",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-transform-modules-commonjs": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@types/jest": "23.3.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"eslint": "5.6.1",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-jest": "21.24.1",
"eslint-plugin-prettier": "3.0.0",
"husky": "1.1.2",
"jest": "23.6.0",
"prettier": "1.14.3",
"pretty-quick": "1.7.0"
},
"scripts": {
"test": "jest --coverage",
"lint": "prettier --config ./prettier.config.js --loglevel error --write \"{src,__{tests,mocks}__}/**/*.js\"",
"build": "babel src -d dist"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "prettier --list-different --config ./prettier.config.js \"{src,__{tests,mocks}__}/**/*.js\" && yarn test",
"post-commit": "git update-index -g"
}
}
}