-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 919 Bytes
/
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
{
"name": "imdbtr",
"version": "2.0.2",
"description": "IMDB on terminal",
"license": "MIT",
"repository": "fernahh/imdbtr",
"scripts": {
"test": "ava",
"lint": "xo",
"check": "npm run test && npm run lint"
},
"author": {
"name": "Luiz Fernando Rodrigues",
"email": "fernahh@gmail.com",
"url": "http://blog.fernahh.com.br"
},
"bugs": {
"url": "https://github.com/fernahh/imdbtr/issues"
},
"homepage": "https://github.com/fernahh/imdbtr#readme",
"engines": {
"node": ">=4"
},
"dependencies": {
"chalk": "^3.0.0",
"figures": "^3.1.0",
"got": "^9.2.1",
"minimist": "^1.2.0",
"ora": "^4.0.3"
},
"keywords": [
"imdb",
"movie",
"cli"
],
"devDependencies": {
"ava": "^2.3.0",
"sinon": "^6.3.3",
"xo": "^0.23.0"
},
"bin": {
"imdbtr": "./bin/imdbtr"
},
"xo": {
"esnext": true,
"space": 2
}
}