mirror of
https://github.com/typicode/json-server.git
synced 2025-08-06 15:19:25 +08:00
58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "json-server",
|
|
"version": "0.3.11",
|
|
"description": "Serves JSON files through REST routes.",
|
|
"main": "./src/server.js",
|
|
"bin": "./bin/index.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^0.4.0",
|
|
"cors": "^2.3.0",
|
|
"express": "^3.4.8",
|
|
"lowdb": "^0.3.0",
|
|
"method-override": "^2.1.2",
|
|
"minimist": "0.0.8",
|
|
"superagent": "~0.15.7",
|
|
"underscore": "~1.5.2",
|
|
"underscore.inflections": "~0.2.1",
|
|
"update-notifier": "^0.1.8",
|
|
"yargs": "^1.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"supertest": "~0.8.1",
|
|
"mocha": "~1.14.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -R spec test",
|
|
"start": "node server.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/typicode/json-server.git"
|
|
},
|
|
"keywords": [
|
|
"JSON",
|
|
"server",
|
|
"fake",
|
|
"REST",
|
|
"API",
|
|
"prototyping",
|
|
"mock",
|
|
"mocking",
|
|
"test",
|
|
"testing",
|
|
"rest",
|
|
"data",
|
|
"dummy",
|
|
"sandbox"
|
|
],
|
|
"author": "Typicode <typicode@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/typicode/json-server/issues"
|
|
},
|
|
"homepage": "https://github.com/typicode/json-server"
|
|
}
|