-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "node-babel-server",
"version": "1.0.0",
"description": "",
"bin": {
"bdwkc": "./dist/index.js",
"bdwkc_ws": "./dist/server.js"
},
"main": "dist/index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"server": "nodemon --exec babel-node src/server.js",
"test": "./node_modules/.bin/mocha --require @babel/register --recursive ./test",
"build": "./node_modules/.bin/babel src --out-dir ./dist --source-maps"
},
"keywords": [],
"author": "Li Chong <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/cli": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.18.9"
},
"dependencies": {
"chalk": "^2.4.2",
"dotenv": "^6.2.0",
"gm": "^1.23.1",
"inquirer": "^7.0.0",
"puppeteer": "^1.19.0",
"tesseract.js": "^2.0.0-alpha.15",
"ws": "^7.1.2"
},
"repository": {
"url": "https://github.com/delapecci/baidu-doc"
}
}