forked from json-schema-faker/json-schema-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "json-schema-faker",
"version": "0.3.3",
"description": "JSON-Schema + fake data generators",
"homepage": "http://json-schema-faker.js.org",
"main": "index.js",
"scripts": {
"dev": "jasmine-node spec/schema --coffee --verbose --autoTest --watchFolders lib",
"dev:lint": "tslint ts/**/*.ts && eslint lib",
"dev:unit": "jasmine-node spec/unit --noStackTrace --captureExceptions",
"dev:schema": "jasmine-node spec/schema --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:unit && npm run dev:schema",
"dist": "node build/dist.js",
"tsc": "./build/tsc.sh",
"tsify": "browserify ts/index.ts -p [ tsify ] > dist/temp-bundle.js",
"graphviz": "./node_modules/.bin/madge lib --dot > structure.gv"
},
"contributors": [
{
"name": "Alvaro Cabrera",
"email": "[email protected]"
},
{
"name": "Tomasz Ducin",
"email": "[email protected]",
"url": "http://ducin.it"
}
],
"repository": {
"type": "git",
"url": "https://github.com/json-schema-faker/json-schema-faker"
},
"bugs": "https://github.com/json-schema-faker/json-schema-faker/issues",
"license": "MIT",
"dependencies": {
"chance": "^1.0.3",
"deref": "^0.6.4",
"faker": "~3.1.0",
"randexp": "~0.4.2"
},
"devDependencies": {
"browserify": "^13.0.1",
"clone": "^1.0.2",
"codecov": "^1.0.1",
"eslint": "^2.9.0",
"fs-extra": "^0.30.0",
"glob": "^7.0.3",
"istanbul": "^0.4.3",
"jasmine-node": "^2.0.0",
"jayschema": "^0.3.1",
"lodash.template": "^4.2.4",
"semver": "^5.1.0",
"tslint": "^3.9.0",
"tv4": "^1.2.7",
"typescript": "^1.8.10",
"uglify-js": "^2.6.2",
"z-schema": "^3.17.0"
},
"keywords": [
"json",
"jsonschema",
"fake",
"mocks"
]
}