-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 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
{
"name": "bmock-js",
"version": "0.1.2",
"description": "Mock backend on js",
"main": "index.js",
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"keywords": [
"backend",
"mock",
"js"
],
"author": "denich",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denich/bmock-js.git"
},
"bugs": {
"url": "https://github.com/denich/bmock-js/issues"
},
"homepage": "https://github.com/denich/bmock-js",
"dependencies": {
"body-parser": "^1.15.0",
"lodash": "^4.6.1",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-eslint": "^6.0.0-beta.1",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-loader": "^1.2.0",
"mocha": "^2.3.4",
"rewire": "^2.5.1",
"rewire-webpack": "^1.0.1",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.12",
"yargs": "^4.2.0"
}
}