-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "describe-ast-parser",
"version": "0.0.7",
"description": "Parses jest code to AST and extract nodes with `describe` and `test`",
"main": "dist/index.js",
"types": "src/index.ts",
"type": "commonjs",
"files": [
"README.md",
"dist",
"src/index.ts",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc && babel src --out-dir dist",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,ts}'"
},
"keywords": [
"jest",
"ast",
"parser"
],
"author": "TakaShinoda <[email protected]>",
"license": "MIT",
"repository": "https://github.com/TakaShinoda/describe-ast-parser",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/parser": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@types/babel__traverse": "^7.20.1",
"@types/node": "^20.3.1",
"prettier": "2.8.8",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@babel/parser": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@types/babel__traverse": "^7.20.1"
}
}