-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "tumau",
"version": "1.0.0-alpha.95",
"description": "A node HTTP framework written in Typescript",
"keywords": [
"node",
"server",
"ts"
],
"repository": "[email protected]:etienne-dldc/tumau.git",
"license": "MIT",
"author": "Etienne Dldc <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup --format cjs,esm src/index.ts --dts src/index.ts",
"lint": "prettier . --check && eslint . && tsc --noEmit",
"lint:fix": "prettier . --write . && eslint . --fix",
"release": "yarn build && np",
"test": "yarn lint && jest --coverage",
"test:run": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch"
},
"dependencies": {
"chemin": "^8.0.0",
"miid": "^6.0.2",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/koa": "^2.13.4",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-ts-tsx-resolver": "^1.0.0",
"koa": "^2.13.4",
"node-fetch": "^2.6.2",
"np": "^7.6.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"tsup": "^5.11.13",
"typescript": "^4.6.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}