-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
{
"name": "mockingjays",
"version": "2.2.1",
"description": "Mockingjays is a proxying library that responds with previously observed responses.",
"main": "build/index.js",
"scripts": {
"build": "npm run build:core && npm run build:test",
"build:core": "babel src -d build/src --copy-files && babel bin -d build/bin --copy-files && babel index.js -d build/",
"build:test": "npm run build:test:feature && npm run build:test:unit",
"build:test:feature": "babel features -d build/features --copy-files",
"build:test:unit": "babel test -d build/test --copy-files",
"clean": "rm -rf build/temp/",
"lint": "eslint bin/ src/ test/ features/ index.js",
"prepublish": "rm -rf build && npm run build:core",
"test": "npm run test:unit && npm run test:feature",
"test:unit": "npm run clean && npm run build && mocha --exit ./build/test",
"test:feature": "npm run clean && npm run build && (cd build && cucumber-js)",
"test:feature:only": "npm run clean && npm run build && (cd build && cucumber-js --tags '@Only')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blad/mockingjays.git"
},
"keywords": [
"mock",
"proxy",
"api",
"cache",
"tools"
],
"author": "Bladymir Tellez <btellez@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/blad/mockingjays/issues"
},
"homepage": "https://github.com/blad/mockingjays#readme",
"bin": {
"mockingjays": "build/bin/mockingjays.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.0.0",
"cucumber": "^4.0.0",
"eslint": "^5.10.0",
"hapi": "^17.0.0",
"inert": "^5.0.0",
"mocha": "^5.0.0",
"sinon": "^4.0.0"
},
"dependencies": {
"babel-runtime": "^6.0.0",
"http-shutdown": "^1.0.0",
"immutable": "^3.0.0",
"minimist": "^1.0.0",
"qs": "^6.0.0",
"ramda": "^0.25.0"
}
}