-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
62
63
64
65
66
67
{
"name": "magister.js",
"version": "2.0.0-alpha.13",
"description": "A JavaScript implementation of the Magister 6 API",
"main": "lib/magister.js",
"directories": {
"test": "test"
},
"dependencies": {
"@magisterjs/authcode": "*",
"dedent": "^0.7.0",
"lodash": "^4.17.11",
"magister-openid": "^0.1.5",
"moment": "^2.24.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-plugin-version-inline": "^1.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-events": "0.0.3",
"coveralls": "^3.0.3",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.15.1",
"eslint-plugin-jsdoc": "^5.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"scripts": {
"build": "babel -s false -d lib/ src/",
"prepare": "npm run build",
"test": "nyc mocha --require @babel/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"docs": "esdoc"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyGits/MagisterJS.git"
},
"author": "simplyApps <hello@simplyApps.nl> (http://simplyGits.github.io/)",
"maintainers": [
"Lieuwe Rooijakkers <lieuwerooijakkers@gmail.com> (http://www.lieuwe.xyz/)"
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/simplyGits/MagisterJS/issues"
},
"homepage": "http://simplyGits.github.io/MagisterJS",
"keywords": [
"magister",
"schoolmaster",
"school",
"simplyApps"
],
"runkitExample": "runkitExample.js"
}