-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.01 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "found-named-routes",
"version": "0.2.0",
"description": "Named route support for Found",
"files": [
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "babel -d lib --delete-dir-on-start src",
"build:esm": "babel --env-name esm -d es --delete-dir-on-start src",
"build:types": "cpy types/*.d.ts lib",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4Catalyzer/found-named-routes.git"
},
"keywords": [
"router",
"react"
],
"author": "4Catalyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/4Catalyzer/found-named-routes/issues"
},
"homepage": "https://github.com/4Catalyzer/found-named-routes#readme",
"dependencies": {
"invariant": "^2.2.4"
},
"peerDependencies": {
"farce": ">=0.4.0",
"found": ">=0.5.1"
},
"devDependencies": {
"@4c/babel-preset": "^8.0.2",
"@4c/tsconfig": "^0.3.1",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-plugin-add-module-exports": "^1.0.4",
"cpy-cli": "^3.1.1",
"eslint": "^7.15.0",
"eslint-config-4catalyzer": "^1.1.5",
"eslint-config-4catalyzer-typescript": "^3.0.2",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"farce": "^0.4.5",
"found": "^0.5.9",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"publishConfig": {
"directory": "lib"
}
}