This repository was archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "nrk",
"version": null,
"description": "Node.JS wrapper of various (undocumented) NRK.no (Norwegian Broadcast Corporation) APIs",
"main": "index.js",
"files": [
"index.js",
"test"
],
"scripts": {
"codacy-coverage": "codacy-coverage",
"cover": "istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- test",
"lint": "eslint index.js test.js",
"nsp": "nsp check",
"semantic-release": "semantic-release",
"test": "mocha -bc --check-leaks -R tap test",
"test:watch": "mocha -wbc --check-leaks -R progress test",
"greenkeeper-postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Starefossen/node-nrk.git"
},
"keywords": [
"NRK",
"NRK.no",
"API",
"TV"
],
"author": "Hans Kristian Flaatten <hans@starefossen.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Starefossen/node-nrk/issues"
},
"homepage": "https://github.com/Starefossen/node-nrk#readme",
"dependencies": {
"jsonist": "^1.3.0"
},
"devDependencies": {
"codacy-coverage": "^2.0.0",
"eslint": "^3.3.0",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.3",
"joi": "^9.0.0",
"mocha": "^3.0.0",
"nsp": "^2.4.0",
"semantic-release": "^4.3.5"
},
"engines": {
"node": ">=4.0.0"
}
}