forked from json-schema-faker/json-schema-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "json-schema-faker",
"version": "0.5.0-rc15",
"description": "JSON-Schema + fake data generators",
"homepage": "http://json-schema-faker.js.org",
"main": "lib/index.js",
"scripts": {
"dist": "npm run build:dist",
"watch": "tarima watch -d VERSION=`./build/VERSION`",
"build": "tarima -qf VERSION=`./build/VERSION`",
"build:dist": "npm run build && node build/dist.js",
"test": "npm run test:lint && npm run build && npm run test:unit && npm run test:schema",
"test:lint": "tslint ts/**/*.ts",
"test:unit": "jasmine-node spec/unit --noStackTrace --captureExceptions",
"test:schema": "jasmine-node spec/schema --coffee --noStackTrace --captureExceptions",
"dev": "jasmine-node spec/schema --coffee --verbose --autoTest --watchFolders lib",
"dev:unit": "jasmine-node spec/unit --coffee --verbose --autoTest --watchFolders lib",
"cover:up": "codecov --file=coverage/lcov.info --disable=gcov -e TRAVIS_NODE_VERSION",
"cover:unit": "istanbul cover --root lib --x '**/spec/**' -- jasmine-node --coffee spec/unit",
"cover:schema": "istanbul cover --root lib --x '**/spec/**' -- jasmine-node --coffee spec/schema",
"typedoc": "typedoc --out docs/html ts/ --module commonjs",
"graphviz": "madge lib --dot > structure.gv"
},
"contributors": [
{
"name": "Alvaro Cabrera",
"email": "[email protected]",
"url": "https://soypache.co"
},
{
"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",
"tarima": {
"from": "ts",
"output": "lib",
"watching": [
"spec"
],
"bundle": true,
"ignore": [
"**/*.d.ts"
],
"filter": [
"!*/*/**"
],
"rename": [
"ts/**:{filepath/1}/{filename}.{extname}"
],
"bundleOptions": {
"rollup": {
"bundle": "JSONSchemaFaker",
"format": "cjs",
"interop": false
}
}
},
"keywords": [
"json",
"jsonschema",
"fake",
"mocks"
],
"devDependencies": {
"chance": "^1.0.9",
"clone": "^2.1.1",
"codecov": "^3.0.0",
"faker": "^4.1.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"google-closure-compiler-js": "^20180402.0.0",
"istanbul": "^0.4.5",
"jasmine-node": "2.0.0-beta4",
"jayschema": "^0.3.2",
"lodash.template": "^4.4.0",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"seedrandom": "^2.4.3",
"semver": "^5.3.0",
"tarima": "^4.0.3",
"ts-node": "^5.0.0",
"tslint": "^5.3.2",
"tv4": "^1.3.0",
"typedoc": "^0.11.1",
"typescript": "^2.3.4",
"z-schema": "^3.18.4"
},
"dependencies": {
"deref": "^0.7.1",
"json-schema-ref-parser": "^5.0.0",
"jsonpath": "^1.0.0",
"randexp": "^0.4.5",
"tslib": "^1.7.1"
}
}