-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1010 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
31
32
33
34
35
36
37
38
39
{
"name": "schoology",
"version": "0.1.5",
"description": "Format requests to the Schoology API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbeuckm/schoology.git"
},
"author": "Joseph Beuckman",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbeuckm/schoology/issues"
},
"homepage": "https://github.com/jbeuckm/schoology#readme",
"dependencies": {
"axios": "^0.21.0",
"crypto": "^1.0.1",
"query-string": "^6.13.7",
"ts-jest": "^26.4.3",
"ts-lint": "^4.5.1",
"typescript": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"babel-jest": "^26.6.1",
"jest": "^26.6.1"
}
}