-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 KB
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
{
"name": "gouter",
"version": "0.12.1",
"description": "universal router",
"main": "index.js",
"type": "module",
"scripts": {
"prepack": "tsc --project publish.tsconfig.json",
"postpack": "rimraf index.d.ts state/index.d.ts native/index.d.ts navigators/index.d.ts linking/index.d.ts",
"typedoc": "typedoc --tsconfig publish.tsconfig.json",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js"
},
"exports": {
".": "./index.js",
"./state": "./state/index.js",
"./native": "./native/index.js",
"./navigators": "./navigators/index.js",
"./linking": "./linking/index.js"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"typedoc": "^0.25.8"
},
"peerDependencies": {
"history": "^5.3.0"
},
"files": [
"index.js",
"state/index.js",
"native/index.js",
"navigators/index.js",
"linking/index.js",
"*.d.ts",
"media/icon.png"
],
"keywords": [
"web",
"react",
"react-native",
"router"
],
"author": "N1cke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nlcke/gouter.git"
}
}