-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
{
"name": "diffbot-api-node",
"description": "Promise-based Node.js library for Diffbot APIs",
"tags": [
"diffbot",
"api",
"node"
],
"version": "0.9.9",
"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.13.2"
},
"keywords": [
"diffbot",
"api",
"node"
],
"license": "MIT",
"main": "src/diffbot.js",
"scripts": {
"generate-types": "tsc",
"lint": "eslint --fix src",
"lint:ci": "eslint src",
"test": "nyc --reporter=text --reporter=lcov mocha test/**/*.test.js"
},
"homepage": "https://github.com/therealpadster/diffbot-api-node",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"chai": "^6.2.1",
"chai-as-promised": "^8.0.2",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"typescript": "^5.9.3"
}
}