-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "polyfill-manager",
"version": "1.1.3",
"description": "",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"unpkg": "lib/index.umd.min.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"pretest": "npm run prepare",
"prepare": "rimraf lib && preppy",
"lint": "eslint src/**/*.ts",
"check-updates": "npx npm-check-updates -u -i && npm install"
},
"files": [
"README.md",
"lib/"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "7.14.0",
"@babel/runtime-corejs3": "7.14.0"
},
"devDependencies": {
"@babel/core": "7.14.0",
"@babel/plugin-transform-runtime": "7.13.15",
"@babel/preset-env": "7.14.1",
"@babel/preset-typescript": "7.13.0",
"@effective/eslint-config": "3.9.8",
"@types/jest": "26.0.23",
"eslint": "7.26.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"node": "14.8.0",
"preppy": "10.10.1",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"typescript": "4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": ".scripts/post-checkout-hook.sh",
"post-merge": ".scripts/post-merge-hook.sh",
"post-rebase": ".scripts/post-rebase-hook.sh"
}
},
"lint-staged": {
"*.{md,json,graphql,gql,yml}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}