-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "landlord-client",
"version": "2.1.0",
"description": "Helper for interacting with Landlord",
"main": "src/index.js",
"scripts": {
"check-style": "eslint --ignore-path .gitignore .",
"test-unit": "nyc mocha -r test/_setup.js test/*.spec.js",
"test": "npm run check-style && npm run test-unit"
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/node-landlord-client.git"
},
"author": "D2L Corporation",
"bugs": {
"url": "https://github.com/Brightspace/node-landlord-client/issues"
},
"homepage": "https://github.com/Brightspace/node-landlord-client",
"dependencies": {
"bluebird": "^3.5.0",
"fast-url-parser": "^1.1.3",
"lru-cache": "^4.1.1",
"parse-cache-control": "^1.0.1",
"superagent": "^3.5.2",
"tcp-ping": "^0.1.1"
},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.0.0",
"eslint-config-brightspace": "0.3.1",
"mocha": "^3.4.2",
"nock": "^9.0.13",
"nyc": "^11.0.3",
"sinon": "^2.3.8"
},
"license": "Apache-2.0"
}