-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@gradecam/clever-api",
"version": "2.0.4",
"description": "Module for interacting with the Clever APIs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && tsc -p .",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"Clever"
],
"author": "GradeCam LLC",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^10.0.0",
"@types/qs": "^6.5.3",
"jest": "^24.9.0",
"jest-junit": "^6.4.0",
"ts-jest": "^26.4.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"axios": "^0.21.1",
"qs": "^6.9.4",
"tslib": "^2.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist/",
"LICENSE",
"README.md",
"package.json"
],
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(test.*)(^.?|\\.[^d]|[^.]d|[^.][^d])\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gradecam/clever-api.git"
},
"bugs": {
"url": "https://github.com/gradecam/clever-api/issues"
}
}