-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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": "restfool",
"version": "0.1.2",
"description": "A framework for building fake endpoints that can be used to test REST calls.",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"build": "babel src --out-dir dist",
"prepublish": "rm -rf dist; npm test && npm run build"
},
"keywords": [
"rest",
"framework",
"fixture",
"mock",
"testing"
],
"author": "Nick Glenn <nick@helpfulhuman.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.3.0",
"faker": "^3.0.1",
"mocha": "^5.2.0",
"pug": "^2.0.3",
"sinon": "^1.17.1",
"stylus": "^0.54.5"
},
"dependencies": {
"body-parser": "^1.14.1",
"browserify-middleware": "^7.0.0",
"cors": "^2.7.1",
"express": "^4.13.3",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"moment": "^2.10.6",
"node-notifier": "^4.3.1",
"shortid": "^2.2.2",
"socket.io": "^2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/HelpfulHuman/Restfool.git"
},
"bugs": {
"url": "https://github.com/HelpfulHuman/Restfool/issues"
},
"homepage": "https://github.com/HelpfulHuman/Restfool"
}