forked from ladjs/supertest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1011 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
39
40
41
42
43
44
{
"name": "supertest",
"version": "2.0.1",
"description": "SuperAgent driven library for testing HTTP servers",
"main": "index.js",
"scripts": {
"pretest": "npm install",
"test": "eslint lib/**/*.js test/**/*.js && mocha --require should --reporter spec --check-leaks"
},
"dependencies": {
"superagent": "^2.0.0",
"methods": "1.x"
},
"devDependencies": {
"body-parser": "~1.15.0",
"cookie-parser": "~1.4.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"express": "~4.14.0",
"mocha": "~3.1.2",
"should": "~11.1.1"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"superagent",
"request",
"tdd",
"bdd",
"http",
"test",
"testing"
],
"author": "TJ Holowaychuk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/visionmedia/supertest.git"
}
}