-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "wikitable",
"version": "0.2.3",
"description": "HTML table scraper for wikipedia or any other site",
"main": "lib/index.js",
"scripts": {
"test": "tap test --cov",
"devtool": "NODE_ENV=development devtool test",
"compile": "node_modules/.bin/babel src/lib --out-dir lib",
"prepublish": "npm run compile"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "https://github.com/bencooling/wikitable.git"
},
"keywords": [
"scrape",
"scraper",
"html",
"table",
"json"
],
"author": "Ben Cooling",
"license": "ISC",
"dependencies": {
"jsdom": "^9.4.2",
"pify": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"tap": "^6.3.2"
}
}