-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
43
44
{
"name": "node-scrapper",
"version": "1.0.0",
"description": "Node scrapper",
"main": "scrapper.js",
"scripts": {
"watch": "./node_modules/.bin/babel -w pages/ libs/ index.js -d build/",
"prewatch": "npm run clean",
"clean": "./node_modules/.bin/rimraf build/*",
"build:dev": "./node_modules/.bin/babel pages/ libs/ index.js -d build/"
},
"keywords": [
"Scrapper"
],
"author": "Manish",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babel-polyfill": "^6.13.0",
"babel-register": "6.6.5",
"rimraf": "^2.5.2"
},
"dependencies": {
"assert-js": "0.1.0",
"babel-plugin-transform-builtin-extend": "1.1.0",
"babel-plugin-transform-runtime": "6.6.0",
"babel-polyfill": "6.7.4",
"babel-runtime": "6.6.1",
"csv": "^1.1.0",
"jszip": "^2.2.0",
"jszip-utils": "git://github.com/Stuk/jszip-utils.git",
"phantom": "^2.1.17",
"phantomjs": "^2.1.7",
"q": "^1.4.1",
"selenium": "^2.20.0",
"selenium-webdriver": "^2.53.3"
}
}