-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "webcm",
"version": "0.10.9",
"description": "Demonstrative implementation of a web-based manager for utilising Managed Components",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/webcm.git"
},
"author": "Cloudflare Managed Components Team <managedcomponents@cloudflare.com> (https://blog.cloudflare.com/zaraz-open-source-managed-components-and-webcm/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cloudflare/webcm"
},
"keywords": [
"webcm",
"managed-components",
"cloudflare"
],
"engines": {
"node": ">=18.0.0"
},
"bin": {
"webcm": "lib/src/cli.js"
},
"main": "lib/src/index.js",
"scripts": {
"dev": "TS_NODE_FILES=true nodemon --exec 'node --loader ts-node/esm' src/index.ts",
"build": "tsc && chmod +x lib/src/cli.js",
"lint": "eslint --ext .ts,.js, lib",
"lint:fix": "eslint --ext .ts,.js, lib --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run --globals",
"test:dev": "vitest --globals",
"buildcheck": "npm run typecheck && npm run test && npm run lint"
},
"dependencies": {
"@types/find-package-json": "^1.2.6",
"cookies": "^0.8.0",
"express": "^4.18.1",
"find-package-json": "^1.2.0",
"http-proxy-middleware": "^2.0.6",
"jsdom": "^20.0.0",
"locreq": "^2.1.0",
"pacote": "^13.6.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"webcm": "^0.9.1",
"yargs": "^17.5.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@managed-components/types": "1.3.12",
"@types/cookies": "^0.7.7",
"@types/express": "^4.17.13",
"@types/jsdom": "^16.2.14",
"@types/node": "^18.0.0",
"@types/pacote": "^11.1.5",
"@types/ua-parser-js": "^0.7.39",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"vitest": "^0.15.2"
}
}