forked from conversation/gitbook-to-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 841 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
{
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"types": "tsc --noEmit --incremental false",
"build": "babel src --out-dir built --extensions \".ts,.js\"",
"get-content": "node built/get-content.js",
"get-pages": "node built/get-pages.js",
"get-files": "node built/get-files.js",
"parse-pages": "node built/parse-pages.js",
"gitbook-to-md": "node built/gitbook-to-md.js"
},
"dependencies": {
"axios": "^0.27.2",
"prettier": "^2.7.0"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.5",
"@babel/preset-env": "7.18.2",
"@babel/preset-typescript": "7.17.12",
"@types/jest": "28.1.2",
"babel-jest": "28.1.1",
"jest": "28.1.1",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"typescript": "4.7.4"
}
}