-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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
{
"name": "mocki",
"version": "0.4.23",
"private": true,
"author": "tim walker",
"license": "MIT",
"description": "a little server of mock json files for backbone models/collections.",
"keywords": [
"mock",
"fixtures",
"backbone",
"restful",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/twalker/mocki.git"
},
"main": "index.js",
"dependencies": {
"body-parser": "1.10.1",
"cuid": "~1.2.4",
"express": "4.10.7"
},
"devDependencies": {
"chai": "~1.10.0",
"errorhandler": "^1.3.2",
"mocha": "~2.1.0",
"morgan": "^1.5.1",
"standard": "^4.5.4",
"supertest": "~0.15.0"
},
"scripts": {
"start": "node server",
"lint": "standard",
"test": "standard && mocha --ui bdd --recursive --reporter spec --timeout 10000 --slow 300"
},
"standard": {
"global": [ "describe", "it", "before", "after", "beforeEach", "afterEach" ]
}
}