-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 939 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
33
34
35
36
37
38
39
40
41
42
{
"name": "router-fns",
"version": "1.0.0",
"description": "All you need is handler",
"repository": "[email protected]:plaidev/router-fns.git",
"author": "RyosukeCla <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write --config ./prettier.config.js",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.11",
"babel-preset-env": "1.7.0",
"husky": "1.3.1",
"jest": "24.7.1",
"lint-staged": "8.1.5",
"prettier": "1.17.0",
"rollup": "1.10.0",
"rollup-plugin-typescript2": "0.20.1",
"ts-jest": "24.0.2",
"typescript": "3.4.3"
}
}