-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "deezer-node-api",
"version": "0.3.0",
"description": "Wrapper for the Deezer API",
"main": "src/index.js",
"bin": {
"mocha": "./node_modules/.bin/mocha",
"eslint": "./node_modules/.bin/eslint",
"nyc": "./node_modules/.bin/nyc",
"coveralls": "./node_modules/.bin/coveralls"
},
"scripts": {
"test": "mocha test",
"lint": "eslint src",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"deezer",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/acostes/deezer-node-api.git"
},
"bugs": {
"url": "https://github.com/acostes/deezer-node-api/issues"
},
"homepage": "https://github.com/acostes/deezer-node-api#readme",
"dependencies": {
"request": "2.87.0",
"request-promise": "4.2.2"
},
"author": "Arnaud Costes <arnaud.costes@gmail.com>",
"license": "MIT",
"devDependencies": {
"coveralls": "3.0.1",
"eslint": "5.0.0",
"mocha": "5.2.0",
"nyc": "12.0.2",
"unit.js": "~2.0.0"
}
}