-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 826 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 826 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
{
"name": "@mdn/bcd-utils-api",
"version": "0.0.9",
"description": "Converts bcd data into json files usable by yari's bcd table",
"homepage": "https://github.com/mdn/bcd-utils#readme",
"bugs": {
"url": "https://github.com/mdn/bcd-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdn/bcd-utils.git"
},
"license": "MPL-2.0",
"author": "MDN Web Docs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"generate": "ts-node cli.ts",
"test": "npm run generate && rm -r out"
},
"devDependencies": {
"@types/node": "^24.10.3",
"@types/semver": "^7.3.13",
"semver": "^7.3.8",
"ts-node": "^10.9.1",
"typescript": "^6.0.2"
},
"peerDependencies": {
"@mdn/browser-compat-data": "^8.0.0"
}
}