-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
123 lines (123 loc) · 4.02 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "oc",
"version": "0.49.63",
"description": "A framework for developing and distributing html components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/oc-cli.js",
"scripts": {
"lint": "npx @biomejs/biome check src test tasks",
"lint:apply": "npx @biomejs/biome check --write src test tasks",
"prebuild": "rimraf dist",
"build": "npm run lint && tsc && node tasks/build.js",
"git-stage-and-push": "node tasks/git-stage-and-push.js",
"npm-publish": "node tasks/npm-publish.js",
"publish-major": "npm run test-silent && npm run version-major && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish",
"publish-minor": "npm run test-silent && npm run version-minor && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish",
"publish-patch": "npm run test-silent && npm run version-patch && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish",
"test": "npm run build && node tasks/mochaTest.js",
"test-silent": "npm run build && node tasks/mochaTest.js --silent",
"version-major": "node tasks/version.js --type=\"major\"",
"version-minor": "node tasks/version.js --type=\"minor\"",
"version-patch": "node tasks/version.js --type=\"patch\"",
"prepare": "lefthook install"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/opencomponents/oc"
},
"author": "Matteo Figus",
"license": "MIT",
"bugs": {
"url": "https://github.com/opencomponents/oc/issues"
},
"homepage": "https://github.com/opencomponents/oc",
"keywords": [
"open components",
"components",
"oc"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/accept-language-parser": "^1.5.6",
"@types/async": "^3.2.24",
"@types/cross-spawn": "^6.0.6",
"@types/errorhandler": "^1.5.3",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/livereload": "^0.9.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.4",
"@types/parse-author": "^2.0.3",
"@types/read": "^0.0.32",
"@types/response-time": "^2.3.8",
"@types/semver": "^7.5.8",
"@types/targz": "^1.0.4",
"@types/yargs": "^17.0.33",
"chai": "^4.3.8",
"chalk": "^4.1.2",
"glob": "^7.2.0",
"injectr": "^0.5.1",
"lefthook": "^1.7.15",
"minimist": "^1.2.8",
"mocha": "^10.7.3",
"node-emoji": "^1.11.0",
"rimraf": "^3.0.2",
"semver-sort": "^1.0.0",
"simple-git": "^2.48.0",
"sinon": "^12.0.1",
"type-fest": "^2.8.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/lodash.isequal": "^4.5.8",
"accept-language-parser": "^1.5.0",
"async": "^3.2.6",
"basic-auth-connect": "^1.0.0",
"builtin-modules": "^3.3.0",
"chokidar": "^3.6.0",
"colors": "^1.4.0",
"cross-spawn": "^7.0.3",
"dependency-graph": "^1.0.0",
"dotenv": "^16.4.5",
"errorhandler": "^1.5.1",
"express": "^4.20.0",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0",
"getport": "^0.1.0",
"livereload": "^0.9.3",
"lodash.isequal": "^4.5.0",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"nice-cache": "^0.0.5",
"oc-client": "^4.0.1",
"oc-client-browser": "^1.9.4",
"oc-empty-response-handler": "^1.0.2",
"oc-get-unix-utc-timestamp": "^1.0.6",
"oc-s3-storage-adapter": "^2.2.0",
"oc-storage-adapters-utils": "^2.1.0",
"oc-template-es6": "^1.0.7",
"oc-template-es6-compiler": "^4.4.3",
"oc-template-handlebars": "^6.0.25",
"oc-template-handlebars-compiler": "^6.5.1",
"oc-template-jade": "^7.0.6",
"oc-template-jade-compiler": "^7.3.1",
"open": "^8.4.0",
"parse-author": "^2.0.0",
"read": "^1.0.7",
"require-package-name": "^2.0.1",
"response-time": "^2.3.2",
"semver": "^7.6.3",
"semver-extra": "^3.0.0",
"serialize-error": "^8.1.0",
"targz": "^1.0.1",
"try-require": "^1.2.1",
"undici": "^6.19.8",
"universalify": "^2.0.0",
"yargs": "^17.7.2"
}
}