-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"author": {
"name": "121593",
"email": "[email protected]",
"url": "https://github.com/121593"
},
"ava": {
"require": [
"esm"
]
},
"bugs": {
"url": "https://github.com/121593/amazon-url-builder/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"description": "Builds parametrized Amazon URIs",
"devDependencies": {
"@types/node": "^14.18.12",
"ava": "^3.15.0",
"commitizen": "^4.2.4",
"ejs": "^3.1.6",
"eslint": "^8.9.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"esm": "^3.2.25",
"nodemon": "^2.0.15",
"nyc": "^15.1.0"
},
"homepage": "https://github.com/121593/amazon-url-builder",
"keywords": [
"amazon",
"url",
"scraper",
"parser",
"crawler",
"products",
"data"
],
"license": "ISC",
"main": "src/index.js",
"name": "amazon-url-builder",
"repository": {
"type": "git",
"url": "https://github.com/121593/amazon-url-builder.git"
},
"scripts": {
"commit": "git-cz",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > ./.nyc_output/lcov.info",
"coveralls": "cat ./.nyc_output/lcov.info | coveralls",
"dev": "nodemon example/index.js",
"release": "semantic-release",
"test": "ava"
},
"version": "0.1.0"
}