-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.3 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.3 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
62
63
64
{
"name": "generate-json",
"version": "0.2.2",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"umd": "dist/index.umd.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "jest --watch",
"test": "jest --coverage",
"prepublish": "yarn test && yarn build"
},
"bin": {
"generate-json": "dist/cli.cjs.js"
},
"dependencies": {
"chunk-and-parallelize": "^0.1.1",
"faker": "^4.1.0",
"flat": "^5.0.1",
"lodash.set": "^4.3.2",
"mkdirp": "^0.5.1",
"mri": "^1.1.1"
},
"devDependencies": {
"@types/faker": "^4.1.3",
"@types/flat": "^0.0.28",
"@types/jest": "^23.3.1",
"@types/lodash.set": "^4.3.4",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"rollup": "^0.64.1",
"rollup-plugin-typescript2": "^0.16.1",
"ts-jest": "^23.1.3",
"typescript": "^3.0.1"
},
"files": [
"dist/"
],
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"fake-data",
"mock",
"data",
"generate",
"json",
"schema"
]
}