-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
53
54
55
{
"name": "@booljs/express",
"version": "0.7.2",
"description": "Express driver for bool.js",
"main": "index.js",
"keywords": [
"express",
"bool.js",
"driver",
"server"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/booljs/booljs-express.git"
},
"license": "GPL-3.0",
"author": {
"name": "Pablo Andrés Dorado Suárez",
"email": "im@pandres95.me",
"url": "https://bool.js.org/developers/pandres95"
},
"bugs": {
"url": "https://github.com/booljs/booljs-express/issues"
},
"homepage": "https://github.com/booljs/booljs-express#readme",
"scripts": {
"pretest": "eslint **/*.js",
"test": "NODE_ENV=test mocha --exit --timeout 5000 test/*"
},
"peerDependencies": {
"@booljs/api": "0.6.x",
"underscore": "1.x"
},
"dependencies": {
"body-parser": "^1.18.3",
"booljs": "^0.9.4",
"express": "^4.16.4"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^7.1.2",
"supertest": "^3.3.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}