forked from Yomguithereal/dolman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dolman",
"version": "0.4.0",
"description": "Light express app wrapper to develop an API comfortably.",
"main": "index.js",
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"lint": "eslint index.js src",
"test": "mocha ./test/unit.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yomguithereal/dolman.git"
},
"keywords": [
"express",
"api",
"server"
],
"contributors": [
{
"name": "Guillaume Plique",
"url": "http://github.com/Yomguithereal"
},
{
"name": "Davy Peter Braun",
"url": "https://github.com/dheavy"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yomguithereal/dolman/issues"
},
"homepage": "https://github.com/yomguithereal/dolman#readme",
"dependencies": {
"typology": "^1.2.0"
},
"devDependencies": {
"@yomguithereal/eslint-config": "^2.1.0",
"async": "^1.5.0",
"body-parser": "^1.14.2",
"eslint": "^2.2.0",
"express": "^4.13.3",
"mocha": "^2.3.4",
"sinon": "^1.17.3",
"supertest": "^1.1.0"
},
"eslintConfig": {
"extends": "@yomguithereal/eslint-config",
"env": {
"es6": true
}
}
}