forked from tacoss/raml-mockup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "raml-mockup",
"version": "0.2.1",
"description": "Express-based mocking service for RAML development",
"bin": {
"raml-mockup": "bin/cli.js"
},
"scripts": {
"dev": "jasmine-node spec --coffee --verbose --autoTest --watchFolders lib",
"dev:lint": "eslint lib",
"dev:spec": "jasmine-node spec --coffee --noStackTrace --captureExceptions",
"cover": "istanbul cover --root lib --x '**/spec/**' -- jasmine-node --coffee spec",
"cover:up": "codecov --file=coverage/lcov.info --disable=gcov -e TRAVIS_NODE_VERSION",
"test": "npm run dev:lint && npm run dev:spec"
},
"author": {
"name": "Alvaro Cabrera",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/gextech/raml-mockup"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"chokidar": "^1.6.0",
"cors": "^2.7.1",
"express": "^4.13.3",
"json-schema-faker": "^0.3.0",
"minimist": "^1.2.0",
"raml-1-parser": "^1.0.0",
"refaker": "^0.3.1"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.3.1",
"istanbul": "^0.4.5",
"jasmine-node": "^2.0.0-beta4"
}
}