-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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": "tvmaze",
"version": "0.3.0",
"description": "A wrapper for tvmaze that returns promises",
"main": "index.js",
"scripts": {
"build": "npm run clean && babel src --out-dir lib",
"prepublish": "npm run build",
"test": "npm run lint && npm run build && node ./tests/test.js",
"lint": "eslint src",
"clean": "rimraf lib",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonhester/tvmaze.git"
},
"keywords": [
"tvmaze",
"tvrage",
"tvdb"
],
"author": "Jon Hester <jon@hester.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonhester/tvmaze/issues"
},
"homepage": "https://github.com/jonhester/tvmaze#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0-beta.6",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"rimraf": "^2.5.2",
"tape": "^4.2.1"
},
"dependencies": {
"request-promise": "^0.4.3"
}
}