-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 946 Bytes
/
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
{
"author": "TestingBot <[email protected]> (testingbot.com)",
"name": "testingbot-api",
"description": "A wrapper around TestingBot's REST API",
"version": "1.0.9",
"scripts": {
"lint": "eslint lib/",
"test:unit": "mocha -t 12000 test/",
"test": "run-s lint test:unit"
},
"homepage": "https://github.com/testingbot/testingbot-api",
"repository": {
"type": "git",
"url": "git://github.com/testingbot/testingbot-api.git"
},
"bugs": {
"url": "https://github.com/testingbot/testingbot-api/issues"
},
"keywords": [
"testingbot-api",
"testingbot-nodejs",
"nodejs api"
],
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "*"
},
"dependencies": {
"request": "^2.88.2"
}
}