-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@umijs/route-utils",
"version": "4.0.1",
"description": "Quickly process the routing of umi",
"repository": "https://github.com/umijs/route-utils",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "./dist/index.d.ts",
"files": [
"/lib",
"/es",
"/dist"
],
"scripts": {
"build": "father-build && tsc -d -p tsconfig.build.json",
"lint": "npm run lint-eslint",
"lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty",
"prepublishOnly": "npm run test && npm run build && np --no-cleanup --yolo --no-publish --any-branch",
"test": "umi-test",
"test:coverage": "umi-test ./test --coverage",
"tsc": "tsc --noEmit"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.1",
"@umijs/fabric": "^2.0.8",
"eslint": "^7.0.0",
"father-build": "^1.18.1",
"np": "^6.2.3",
"prettier": "^2.0.5",
"typescript": "^3.3.3",
"umi-test": "^1.9.6"
},
"authors": {
"name": "chenshuai2144",
"email": "[email protected]"
}
}