-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "easy-mocker",
"version": "1.3.1",
"keywords": [
"server",
"cli",
"json",
"mocks",
"fake-data",
"express"
],
"description": "This is a Mock Server for development, allow to define custom endpoint and starting data. Furnished with an In-Memory storage will speed up your development flow.",
"main": "./src/server.js",
"bin": {
"easy-mocker": "./src/server.js"
},
"scripts": {
"lint": "eslint ./",
"test": "NODE_ENV=test mocha spec/",
"test:api": "NODE_ENV=test mocha spec/api.test.js",
"test:config": "NODE_ENV=test mocha spec/config.test.js",
"test:user": "NODE_ENV=test mocha spec/user.test.js"
},
"author": "Matteo Scandolo",
"homepage": "https://github.com/teone/easy-mocker",
"bugs": {
"url": "https://github.com/teone/easy-mocker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/teone/easy-mocker"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.2.1",
"body-parser": "^1.15.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"lodash": "^4.5.0",
"optimist": "^0.6.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "1.10.3",
"eslint-config-airbnb": "^5.0.1",
"mocha": "^2.4.5",
"mockery": "^1.4.0",
"nodemon": "^1.8.1",
"supertest": "^1.1.0"
}
}