This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "unofficial-umdearborn-catalog-api",
"version": "0.3.3",
"description": "Unofficial course catalog APIs for the University of Michigan-Dearborn",
"main": "./dist/src/library.js",
"typings": "./src/library.ts",
"scripts": {
"clean": "rm -rf ./dist",
"test": "npm run build && npm run run-tests",
"run-tests": "mocha --require ts-node/register \"test/**/*.ts\" --watch-extensions ts",
"build": "tsc",
"watch": "tsc --watch",
"nodemon": "nodemon ./dist/src/index.js",
"start": "npm run watch & npm run nodemon",
"heroku-prebuild": "npm install --only=dev && npm install && npm run build",
"docs": "typedoc --out docs src",
"pretty": "prettier --single-quote --write ./src/**/*.ts ./test/**/*.ts"
},
"author": "rico kahler",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"chai": "^4.1.2",
"dotenv": "^4.0.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"prettier": "^1.11.1",
"ts-node": "^3.3.0",
"typedoc": "^0.10.0",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/common-tags": "^1.4.0",
"@types/express": "^4.11.1",
"@types/he": "^0.5.29",
"@types/jsdom": "^11.0.2",
"@types/lodash": "^4.14.97",
"@types/node": "^8.0.46",
"axios": "^0.17.1",
"common-tags": "^1.7.2",
"express": "^4.16.2",
"he": "^1.1.1",
"http-status-codes": "^1.3.0",
"jsdom": "^11.3.0",
"lodash": "^4.17.4",
"swagger-ui-express": "^2.0.14",
"yamljs": "^0.3.0"
}
}