forked from Aconex/drakov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "drakov",
"version": "1.0.0",
"description": "Mock server that implements the API Blueprint specification",
"main": "./index.js",
"bin": {
"drakov": "drakov"
},
"scripts": {
"test": "grunt"
},
"homepage": "https://github.com/aconex/drakov",
"author": {
"name": "Yakov Khalinsky",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Aconex/drakov.git"
},
"bugs": {
"url": "https://github.com/aconex/drakov/issues"
},
"engines": {
"node": ">= 0.12"
},
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"chokidar": "^1.4.3",
"colors": "^1.1.0",
"drafter.js": "^2.2.0",
"express": "^4.13.4",
"glob": "^7.0.3",
"jade": "^1.11.0",
"lodash": "^4.6.1",
"path-to-regexp": "^1.0.3",
"qs": "^6.1.0",
"tv4": "^1.1.9",
"yargs": "^4.2.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-blueprint-validator": "^3.1.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^1.0.0",
"grunt-simple-mocha": "^0.4.0",
"supertest": "^1.2.0"
}
}