-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 908 Bytes
/
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
{
"name": "@fstn/typescript-data-generator",
"description": "Data generator decorator based for Typescript classes",
"version": "1.0.35",
"author": "Stephen ZAMBAUX",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"dependencies": {
"@types/faker": "^4.1.12",
"@types/node": "^14.0.27"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"faker": "^4.1.0",
"jest": "^26.0.9",
"ts-jest": "26.1.0",
"typescript": "^3.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"test": "jest --all -config ./test/jest.config.js",
"p": "yarn publish --access public"
}
}