-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.16 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
67
68
69
70
71
72
73
74
{
"name": "meta-controller",
"version": "2.0.2",
"description": "meta-controller",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"module": "./esm/index.js",
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
},
"main": "./cjs/index.js",
"types": "./types/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./build",
"lint": "eslint --config .eslintrc.cjs ./src ./test",
"test": "cross-env-shell TS_NODE_TRANSPILE_ONLY=true tap",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig-release.json --module commonjs --target es5 --outDir build/cjs",
"build:esm": "tsc --project tsconfig-release.json --module nodenext --target es2022 --outDir build/esm",
"copy": "cpy ./package.json ./README.md ./LICENSE.md ./build",
"postversion": "git push && git push --tags",
"release": "npm run lint && npm run test && npm run build && npm version patch && npm run copy && npm publish ./build"
},
"tap": {
"reporter": "terse",
"node-arg": [
"--loader=ts-node/esm",
"--no-warnings"
],
"coverage": false,
"bail": true,
"only": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmuchall/meta-controller.git"
},
"keywords": [
"rest"
],
"author": "Rob Muchall <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmuchall/meta-controller/issues"
},
"homepage": "https://github.com/rmuchall/meta-controller#readme",
"devDependencies": {
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/node": "20.4.8",
"@types/tap": "15.0.8",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"eslint": "8.46.0",
"rimraf": "5.0.1",
"tap": "16.3.8",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"dependencies": {
"cors": "2.8.5",
"express": "4.18.2",
"http-status-ts": "2.0.1",
"meta-transformer": "2.0.1",
"meta-validator": "2.0.2",
"reflect-metadata": "0.1.13"
}
}