-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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": "amazon-list-scraper",
"version": "0.1.2",
"description": "Scrape items from a public Amazon's list",
"license": "MIT",
"repository": "luugiathuy/amazon-list-scraper",
"author": {
"name": "Luu Gia Thuy",
"email": "[email protected]",
"url": "luugiathuy.com"
},
"engines": {
"node": ">=6"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint lib/** test/**",
"test": "npm run lint && npm run prepublish && nyc ava --verbose",
"prepublish": "babel lib --out-dir=dist --optional=runtime",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"cheerio": "^0.22.0",
"phantom": "^4.0.5"
},
"devDependencies": {
"ava": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"nyc": "^10.3.2"
},
"keywords": [
"scraper",
"scrape",
"amazon list",
"amazon wish list",
"amazon shopping list",
"amazon",
"shopping list",
"wish list"
]
}