-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "zermelo.js",
"version": "1.0.0",
"description": "a node implementation of the zermelo api",
"main": "lib/zermelo.js",
"engines": {
"node": ">=4.4"
},
"dependencies": {
"form-data": "^1.0.1",
"lodash": "^4.15.0",
"node-fetch": "^1.6.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-modern-node": "^3.2.0",
"chai": "^3.5.0",
"docdash": "^0.4.0",
"jsdoc": "^3.4.0",
"mocha": "^3.0.2"
},
"scripts": {
"build": "babel -s false -d lib/ src/",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register",
"docs": "jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyGits/zermelo.git"
},
"author": "simplyApps <[email protected]> (http://www.simplyapps.nl/)",
"maintainers": [
"Lieuwe Rooijakkers <[email protected]> (http://www.lieuwe.xyz/)"
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/simplyGits/zermelo/issues"
},
"homepage": "https://github.com/simplyGits/zermelo#readme",
"tonicExampleFilename": "tonicdevExample.js"
}