-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.13 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
45
{
"name": "superagent-debugger",
"version": "1.2.9",
"description": "A simple debugging log for superagent",
"main": "lib/index.js",
"scripts": {
"test": "_mocha --compilers js:babel-core/register *.spec.js",
"test:coverage": "nyc --reporter=html --reporter=text npm run test",
"coverage": "nyc --reporter=text-lcov npm run test | coveralls",
"build": "babel index.js -d lib"
},
"keywords": [
"logging",
"debug",
"superagent",
"curl"
],
"repository": {
"type": "git",
"url": "https://github.com/sebastianlzy/superagent-debugger"
},
"author": "sebastian",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.1.8",
"babel-watch": "^2.0.5",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"express": "^4.14.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"superagent": "^3.3.2"
},
"dependencies": {
"chalk": "^1.1.3",
"debug": "^2.6.0",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"query-string": "^4.3.1"
}
}