-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "magister-api",
"version": "0.1.6",
"description": "An API for the Magister school software",
"main": "dist/magister.js",
"files": [
"dist/"
],
"scripts": {
"build": "./node_modules/.bin/babel src -d dist",
"jsdoc": "rm -rf jsdoc && ./node_modules/.bin/jsdoc src/** -d docs -R README.md",
"test": "npm run build && ./node_modules/.bin/mocha"
},
"prepublishOnly": "npm run build && npm run jsdoc",
"repository": {
"type": "git",
"url": "https://github.com/idiidk/magister-api.git"
},
"keywords": [
"magister",
"api",
"school",
"application",
"link",
"auth",
"oauth"
],
"author": "idiidk <dviide@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/idiidk/magister-api/issues"
},
"homepage": "https://github.com/idiidk/magister-api",
"dependencies": {
"axios": "^0.18.0",
"babel-preset-env": "^1.7.0",
"moment": "^2.22.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"chai": "^4.1.2",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0"
}
}