-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 961 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 961 Bytes
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
{
"name": "greenlightci",
"version": "1.0.4",
"description": "CLI tool for Baseline web feature compatibility checking",
"main": "dist/index.js",
"type": "module",
"bin": {
"greenlightci": "bin/greenlightci"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "echo \"No tests yet\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.6.2",
"chokidar": "^3.6.0",
"commander": "^11.1.0",
"glob": "^10.4.5",
"ora": "^7.0.1",
"web-features": "^0.8.6"
},
"devDependencies": {
"@types/node": "^20.19.19",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"baseline",
"web-features",
"compatibility",
"developer-tools"
],
"author": "suryakanta subudhi",
"license": "MIT"
}