-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
62
63
64
65
66
67
68
69
{
"name": "@artischocke/router",
"version": "0.4.2-0",
"description": "A set of routing service methods and utilities for React applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write \"src/**/*.(ts|js)\"",
"lint": "eslint --ext .ts,.js src/",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artischockee/router.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"artischocke",
"artischockee",
"router",
"routing",
"react",
"utilities",
"methods"
],
"author": "Artem Piskarev",
"license": "ISC",
"bugs": {
"url": "https://github.com/artischockee/router/issues"
},
"homepage": "https://github.com/artischockee/router#readme",
"devDependencies": {
"@testing-library/jest-dom": "5.11.2",
"@testing-library/react": "10.4.7",
"@types/jest": "26.0.7",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.7.1",
"codecov": "^3.7.2",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-react": "7.20.6",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.13",
"prettier": "2.0.5",
"ts-jest": "26.1.3",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/history": "4.7.7",
"@types/react": "16.9.48",
"history": "4.10.1",
"react": "16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}