-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "mocha-http-detect",
"version": "0.2.0",
"description": "Live request detection for Mocha",
"main": "dist/index.js",
"scripts": {
"compile": "babel -d dist src",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-register --recursive",
"pretest:ci": "npm run compile",
"test:ci": "npm test"
},
"keywords": [
"mocha",
"live",
"detect"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Chris911/mocha-http-detect.git"
},
"author": "Christophe Naud-Dulude",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chris911/mocha-http-detect/issues"
},
"homepage": "https://github.com/Chris911/mocha-http-detect",
"dependencies": {
"chalk": "1.1.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint": "2.3.0",
"eslint-config-airbnb": "6.1.0",
"mocha": "^2.4.5",
"request-promise": "^2.0.1"
}
}