-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "faker-schema",
"version": "2.0.0",
"description": "Create deterministic schemas with Faker",
"main": "./dist/index.js",
"scripts": {
"build": "rimraf dist && babel src --out-dir dist",
"test": "jest --collectCoverage",
"release": "npm run build && release-it",
"release:dry": "npm run build && release-it --dry-run",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"coverage:dry": "nyc report --temp-directory=coverage --reporter=text-lcov"
},
"author": "Nickolas Kenyeres <[email protected]> (https://www.kenyeres.ca)",
"license": "MIT",
"keywords": [
"faker",
"schema",
"deterministic",
"mock",
"fixtues"
],
"repository": {
"type": "git",
"url": "git://github.com/knicklabs/faker-schema.git"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"babel-jest": "^28.1.1",
"coveralls": "^3.1.1",
"@faker-js/faker": "^7.2.0",
"jest": "^28.1.1",
"nyc": "^15.1.0",
"release-it": "^15.0.0",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@faker-js/faker": ">=1.x"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-modules-commonjs"
]
},
"jest": {
"roots": [
"src"
]
}
}