-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
34 lines (34 loc) · 965 Bytes
/
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
{
"name": "tc39-dataset",
"private": true,
"description": "TC39 Proposals latest status",
"license": "UNLICENSE",
"author": "tc39",
"type": "module",
"scripts": {
"make-scheme": "node runner-dist/schema.js",
"make-dataset": "node runner-dist/index.js",
"build": "tsc -p ./tsconfig.json",
"start": "tsc -p ./tsconfig.json -w"
},
"dependencies": {
"@octokit/rest": "^19.0.3",
"@octokit/types": "^6.41.0",
"cheerio": "^1.0.0-rc.3",
"lodash-es": "^4.17.21",
"markdown-it": "^13.0.1",
"parse-github-url": "^1.0.2"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@types/cheerio": "^0.22.31",
"@types/lodash-es": "^4.14.182",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.6.2",
"@types/node-fetch": "^2.6.2",
"@types/parse-github-url": "^1.0.0",
"json-schema-to-typescript": "^11.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}