-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "jfixtures",
"version": "1.2.0",
"description": "Intsights Jest Fixtures Library",
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc --build --clean && tsc",
"lint": "eslint . --no-eslintrc -c .eslintrc.json --ext .ts",
"test": "npx jest --runInBand --coverage --no-cache"
},
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/Intsights/jfixtures.git"
},
"dependencies": {
"acorn": "^8.8.1"
},
"peerDependencies": {
"jest": "^27.0.6",
"ts-jest": "^27.0.5"
},
"devDependencies": {
"@types/acorn": "^4.0.6",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.3.2"
},
"bugs": {
"url": "https://github.com/Intsights/jfixtures/issues"
},
"homepage": "https://github.com/Intsights/jfixtures",
"author": "[email protected]",
"license": "MIT"
}