This repository was archived by the owner on Jul 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "n26",
"version": "1.5.3",
"description":
"Un-official node.js module for interact with your N26 (previously Number26) account",
"main": "index.js",
"scripts": {
"test":
"npm run lint && istanbul cover _mocha tests/index.js && if [ \"$CONTINUOUS_INTEGRATION\" = \"true\" ]; then cat ./coverage/lcov.info | ./node_modules/.bin/coveralls; fi",
"test-unmock": "node tests/unmock.js",
"lint": "eslint *.js lib/* tests/*",
"docs": "jsdoc -c .jsdoc.json -R README.md",
"deployDocs": "npm run docs && sh ./scripts/deployDocs.sh"
},
"keywords": ["n26", "number26", "bank", "es6", "es2015"],
"author": "Pierrick Paul <mulotmail@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PierrickP/n26"
},
"bugs": {
"url": "https://github.com/PierrickP/n26/issues"
},
"devDependencies": {
"chai": "^4.0.0",
"configstore": "^3.0.0",
"coveralls": "^3.0.0",
"dirty-chai": "^2.0.1",
"docdash": "^0.4.0",
"eslint": "^4.1.0",
"inquirer": "^5.0.0",
"istanbul": "^0.4.2",
"jsdoc": "^3.4.0",
"mocha": "^5.0.0",
"nock": "^9.0.17",
"snyk": "^1.18.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"moment": "^2.20.1",
"request": "^2.83.0",
"request-promise": "^4.2.2"
}
}