-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 899 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
{
"name": "jest-esm-experiments",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"lint:precommit": "echo \"No precommit linting yet\" && exit 0",
"test:precommit": "echo \"Tests are currently failing\"",
"pretty": "npx prettier --write '**/*.{tsx,ts,js,jsx,json,css,scss,md}'",
"test": "npx jest --runInBand --no-cache --config jest.config.js"
},
"lint-staged": {
"**/*.{tsx,ts,js,jsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged && npm run lint:precommit && npm run test:precommit"
}
},
"author": "Christophe Rosset <tophe@topheman.com> (http://labs.topheman.com/)",
"license": "MIT",
"devDependencies": {
"esm": "3.1.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"prettier": "1.18.2"
}
}