-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"files": [
"test/**/*"
],
"helpers": [
"test/helpers/**/*"
],
"require": [
"@babel/register"
],
"sources": [
"src/**/*"
]
},
"dependencies": {
"@babel/register": "^7.7.4",
"bluefeather": "^2.9.0",
"deep-map-keys": "^2.0.1",
"es6-error": "^4.1.1",
"got": "^10.0.4",
"lodash": "^4.17.15",
"qs": "^6.9.1",
"roarr": "^2.14.6"
},
"description": "TMDb SDK.",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-flow-comments": "^7.7.4",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/register": "^7.7.4",
"ava": "^2.4.0",
"babel-plugin-istanbul": "^5.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"eslint-config-canonical": "^18.1.0",
"flow-bin": "^0.114.0",
"husky": "^3.1.0",
"nock": "^11.7.0",
"nyc": "^14.1.1",
"semantic-release": "^15.13.31",
"sinon": "^7.5.0"
},
"engines": {
"node": ">=10.0"
},
"keywords": [
"tmdb"
],
"main": "./dist/index.js",
"name": "tmdb",
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"text-lcov"
],
"require": [
"@babel/register"
],
"sourceMap": false
},
"repository": {
"type": "git",
"url": "[email protected]:gajus/tmdb.git"
},
"scripts": {
"build": "babel ./src --out-dir ./dist --copy-files --source-maps",
"generate-types": "babel-node ./src/bin/generate-types.js",
"lint": "eslint ./src ./test && flow",
"test": "NODE_ENV=test ava --serial --verbose"
},
"version": "2.0.1"
}