-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 910 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 910 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
35
36
37
38
39
{
"name": "schoolnet-api",
"version": "1.2.2",
"scripts": {
"build": "rimraf dist && tsc -p .",
"prepublishOnly": "npm run build"
},
"main": "dist/schoolnet.js",
"typings": "dist/schoolnet",
"repository": {
"type": "git",
"url": "https://github.com/gradecam/nodejs-schoolnet-api"
},
"keywords": [
"schoolnet"
],
"license": "MIT",
"author": "Jarom Loveridge",
"files": [
"dist/"
],
"dependencies": {
"@gradecam/restler-q": "^0.2.0",
"bluebird": "^3.4.3",
"lodash": "^4.17.20",
"log4js": "^0.6.16",
"moment": "^2.29.1"
},
"devDependencies": {
"@types/bluebird": "^3.0.32",
"@types/lodash": "^4.14.165",
"@types/log4js": "0.0.30",
"@types/node": "^14.14.8",
"commander": "^2.3.0",
"embed-shell": "git+https://github.com/gradecam/nodejs-embed-shell.git",
"rimraf": "^2.6.2",
"typescript": "^3.0.3"
}
}