-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 KB
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
46
47
48
49
50
51
52
{
"name": "express-domaining",
"description": "Express middleware to create and destroy a node domain",
"version": "2.0.1",
"license": "Apache-2.0",
"author": {
"name": "Jorge Lorenzo Gallardo",
"email": "jorge.lorenzogallardo@telefonica.com"
},
"contributors": [
"Juan Antonio Hernando Labajo <juanantonio.hernandolabajo@telefonica.com>",
"Guido García Bernardo <guido.garciabernardo@telefonica.com>",
"David Lozano Llanos <david.lozanollanos@telefonica.com>",
"Javier Mendiara Cañardo <javier.mendiaracanardo@telefonica.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:telefonica/node-express-domaining.git"
},
"main": "lib/domain",
"engines": {
"node": ">= 0.10.26"
},
"scripts": {
"test": "mocha -R spec test/environment.js test/unit/*-test.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R dot test/environment.js test/unit/*-test.js",
"lint": "jscs lib && eslint lib",
"prepublish": "npm run test && npm run lint",
"travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/environment.js test/unit/*-test.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.16",
"mocha": "^2.2.5",
"proxyquire": "^1.5.0",
"should": "^7.0.1",
"sinon": "~1.15.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.0.1",
"xunit-file": "^0.0.6",
"jscs": "^1.13.1",
"eslint": "^0.23.0"
},
"dependencies": {
},
"keywords": [
"domain",
"express",
"middleware"
]
}