-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "td-test-data-generator",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"type": "module",
"scripts": {
"build:docs": "jsdoc -c ./jsdoc.json",
"coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint index.mjs src/**/*.mjs --fix",
"start": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 node .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"inquirer": "^9.1.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@jsdoc/eslint-config": "^1.1.11",
"change-case": "^4.1.2",
"clean-jsdoc-theme": "^4.2.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.1",
"jest-matcher-utils": "^29.4.2",
"jsdoc": "^4.0.0",
"prettier": "^2.8.3",
"ramda": "^0.28.0"
},
"peerDependencies": {
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}