-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.07 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.07 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
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
81
82
83
84
85
86
87
88
{
"name": "@coldbrewjs/router",
"description": "API Router for Readable Code",
"version": "0.1.9",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"sideEffect": false,
"engines": {
"node": ">=10",
"npm": ">=5",
"yarn": ">=1.4.0"
},
"scripts": {
"bundle": "rollup -c",
"prebuild": "rimraf dist && tsc --emitDeclarationOnly",
"build": "rollup -c",
"test": "jest",
"test:w": "jest --watch",
"test:c": "jest --coverage"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/coldbrewjs/router.git"
},
"keywords": [
"api",
"router",
"xhr",
"http",
"ajax",
"promise",
"node"
],
"author": {
"name": "Kevin You",
"email": "eilgwon@hanmail.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/coldbrewjs/router/issues",
"email": "eilgwon@hanmail.net"
},
"homepage": "https://github.com/coldbrewjs/router.git",
"files": [
"dist/**/*"
],
"lint-staged": {
"*.ts": [
"eslint . --fix",
"prettier --write"
]
},
"peerDependencies": {
"axios": "^0.21.1"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.13",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"form-data": "^3.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.37.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}