-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "jest-graphviz",
"version": "0.5.0",
"author": "kamiazya <yuki@kamiazya.tech>",
"description": "A plugin for jest that supports graphviz integration.",
"keywords": [
"jest",
"graphviz",
"dot"
],
"scripts": {
"test": "jest",
"build": "rollup -c && prettier --write ./dist/index.*",
"lint": "eslint -c .eslintrc.json --ext ts src",
"format": "eslint -c .eslintrc.json --ext ts src --fix && prettier --write './src/**/*.ts'"
},
"license": "MIT",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "dist/index.d.ts",
"peerDependencies": {
"jest": ">=27"
},
"dependencies": {
"jest-snapshot": "^27.2.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@kamiazya/jest-dynamic": "^0.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.1",
"prettier": "^2.4.1",
"rollup": "^2.57.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}