-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "diffbot-api-node",
"description": "Promise-based Node.js library for Diffbot APIs",
"tags": [
"diffbot",
"api",
"node"
],
"version": "0.9.5",
"repository": {
"type": "git",
"url": "git+https://github.com/therealpadster/diffbot-api-node.git"
},
"bugs": {
"web": "https://github.com/therealpadster/diffbot-api-node/issues"
},
"dependencies": {
"axios": "^1.6.3"
},
"keywords": [
"diffbot",
"api",
"node"
],
"license": "MIT",
"main": "src/diffbot.js",
"scripts": {
"generate-types": "tsc",
"lint": "eslint --fix src",
"lint:ci": "eslint src",
"test": "nyc mocha test/**/*.test.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"homepage": "https://github.com/therealpadster/diffbot-api-node",
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"eslint": "^8.56.0",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"typescript": "^5.3.3"
}
}