-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "vod_scrapper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel-polyfill": "^6.23.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"jsdom": "^9.12.0",
"lodash": "^4.17.4",
"mongoose": "^4.9.5",
"mongoose-paginate": "^5.0.3",
"request-promise": "^4.2.1",
"request-rate-limiter": "^1.0.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"mocha": "^3.3.0",
"request": "^2.81.0"
},
"scripts": {
"compile": "./node_modules/.bin/babel ./src -d ./dist",
"start": "npm run compile && node ./dist/index.js",
"test": "./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill --recursive ./test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmanijak/vod_scrapper.git"
},
"author": "Karol Manijak",
"license": "ISC",
"bugs": {
"url": "https://github.com/kmanijak/vod_scrapper/issues"
},
"homepage": "https://github.com/kmanijak/vod_scrapper#readme"
}