forked from furstenheim/web-scraper-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
{
"name": "web-scraper-headless",
"version": "1.0.7",
"description": "Web Scraper Headless allows to extract data from web pages using plans (sitemaps) created with the Web Scraper browser extension. Using these sitemaps the Web Scraper will navigate the site accordingly and extract all data. Scraped data later can be exported as CSV.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"watch": {
"generate": {
"patterns": [
"extension"
],
"ignore": "extension/generated",
"extensions": "js"
}
},
"standard": {
"ignore": [
"extension/generated",
"extension/assets"
],
"globals": [
"d3",
"chrome",
"describe",
"it",
"beforeEach",
"afterEach",
"after",
"before"
]
},
"scripts": {
"build": "gulp build",
"test-watch": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geoblink/web-scraper-chrome-extension.git"
},
"author": "",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/geoblink/web-scraper-chrome-extension/issues"
},
"homepage": "https://github.com/geoblink/web-scraper-chrome-extension#readme",
"devDependencies": {
"babel-plugin-meaningful-logs": "^1.0.2",
"babel-register": "^6.24.1",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"chrome-remote-interface": "^0.18.0",
"gulp": "^3.9.1",
"gulp-notify": "^3.0.0",
"gulp-spawn-mocha": "^3.3.0",
"istanbul": "^0.4.5",
"jasmine-node": "^1.14.5",
"karma": "^1.6.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^3.2.0",
"npm-watch": "^0.1.8",
"sinon": "^7.4.2",
"standard": "^9.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0",
"webworkify": "^1.4.0"
},
"dependencies": {
"browserify": "^16.1.0",
"css-selector": "git://github.com/furstenheim/css-selector.git#b50eb6befc4129ac56e91efba3dd1e233bb67202",
"debug": "^3.1.0",
"jquery": "^3.2.1",
"jquery-deferred": "^0.3.1",
"jsdom": "^10.1.0",
"puppeteer": "1.5.0"
}
}