-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 912 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 912 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
33
34
{
"name": "fetch_courses",
"version": "1.0.0",
"description": "Asynchronous batch processing for gatech course data",
"main": "target/index.js",
"scripts": {
"start": "npm run build && node ./target/src/index.js",
"dev": "npm run build && node -r dotenv/config ./target/src/index.js",
"build": "rm -rf target && tsc",
"test": "nyc ava",
"tsc": "tsc",
"bld:test": "npm run build && npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@types/isomorphic-fetch": "0.0.35",
"backendless": "^6.0.6",
"dotenv": "^8.2.0",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@types/node": "^14.0.26",
"@types/sinon": "^9.0.4",
"ava": "^3.10.1",
"backendless-coderunner": "^6.0.2",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"typescript": "^3.9.7"
}
}