-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 731 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 731 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": "shift-up",
"version": "1.0.0",
"main": "app.js",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"commander": "^2.20.0",
"prompt": "^1.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"tough-cookie": "^3.0.1",
"tough-cookie-store": "0.0.6"
},
"bin": {
"shiftup": "./tsc-out/app.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node app.ts"
},
"devDependencies": {
"@types/cheerio": "^0.22.7",
"@types/node": "^10.14.4",
"@types/request": "^2.47.0",
"@types/request-promise-native": "^1.0.14",
"@types/tough-cookie": "^2.3.3",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.1"
}
}