forked from fidelman/mokker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mokker",
"version": "0.3.2",
"description": "Simple Rest API mock server",
"module": "src/index.js",
"main": "public/index.js",
"author": {
"name": "Andrei Fidelman",
"email": "fidelmanlife@gmail.com"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"colors": "^1.1.2",
"express": "^4.16.2",
"fs": "0.0.1-security",
"json2md": "^1.5.10",
"morgan": "^1.9.0",
"query-string": "^5.1.0",
"react-dev-utils": "^4.2.1"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "cd test/ && nodemon index.js",
"test": "cd test/ && mocha test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"express",
"mock",
"node",
"REST",
"API",
"functional",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/fidelman/mokker.git"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/fidelman/mokker/issues"
},
"homepage": "https://github.com/fidelman/mokker",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"mocha": "^4.0.1",
"path": "^0.12.7",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"should": "^13.1.3"
}
}