-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.66 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
{
"name": "megogo-api",
"version": "0.0.4",
"homepage": "https://github.com/boda2004/megogo-api",
"description": "megogo.net api implementation for node.js",
"main": "dist/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test API_URL='https://api.megogo.net/v1' API_PRIVATE_KEY='63ee38849d' API_PUBLIC_KEY='_kodi_j1' mocha --recursive --compilers js:babel-register",
"test:cover": "cross-env NODE_ENV=test API_URL='https://api.megogo.net/v1' API_PRIVATE_KEY='63ee38849d' API_PUBLIC_KEY='_kodi_j1' isparta cover --root src/ --include-all-sources _mocha -- --recursive --compilers js:babel-register",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf dist && cross-env NODE_ENV=production webpack",
"prepublish": "npm run build"
},
"keywords": [
"megogo",
"api"
],
"author": "Oleksandr Bodnarashyk <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/boda2004/megogo-api.git"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"cross-env": "^1.0.8",
"isparta": "^4.0.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"path": "^0.12.7",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"node-fetch": "^1.5.3"
}
}