forked from typicode/jsonplaceholder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 890 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
42
43
44
45
46
{
"name": "jsonplaceholder",
"version": "0.3.3",
"description": "A simple fake REST API server for testing and prototyping.",
"keywords": [
"fake",
"JSON",
"server",
"REST",
"dummy",
"data",
"API",
"testing",
"prototyping"
],
"homepage": "http://jsonplaceholder.typicode.com",
"repository": {
"type": "git",
"url": "https://github.com/typicode/jsonplaceholder.git"
},
"scripts": {
"start": "node index",
"test": "node test/app"
},
"dependencies": {
"clone": "^1.0.2",
"json-server": "^0.14.0"
},
"devDependencies": {
"Faker": "~0.5.11",
"husky": "^1.0.0-rc.13",
"rosie": "~1.6.0",
"supertest": "^3.1.0",
"tape": "^4.5.1",
"underscore": "~1.5.2"
},
"engines": {
"node": "10.x"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}