-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "teleman",
"version": "0.7.4",
"description": "A browser and node.js fetch API wrapper.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "start-server-and-test 'ts-node-esm test/test-server.ts' 3000 jest",
"build": "rollup -c rollup.config.esm.js && rollup -c rollup.config.cjs.js && tsc -d --emitDeclarationOnly --declarationDir dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jiangfengming/teleman.git"
},
"bugs": {
"url": "https://github.com/jiangfengming/teleman/issues"
},
"homepage": "https://github.com/jiangfengming/teleman#readme",
"directories": {
"test": "test"
},
"keywords": [
"fetch",
"ajax",
"RESTful"
],
"author": "Jiang Fengming <[email protected]>",
"license": "MIT",
"dependencies": {
"koa-compose": "^4.1.0"
},
"devDependencies": {
"@jest/globals": "^29.6.4",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/koa": "^2.13.8",
"@types/koa-compose": "^3.2.5",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.4",
"koa": "^2.14.2",
"koa-pilot": "^0.7.2",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"rollup": "^3.28.1",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}