-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "traverse-the-universe",
"version": "2.1.2",
"description": "Yet another ESTree AST traversal/modification library, making use of `this` binding and generators",
"keywords": [
"ast",
"traverse",
"acorn",
"estree",
"ast-traversal",
"ast-transformation",
"estree-ast-traversal",
"js-ast",
"es2022"
],
"homepage": "https://github.com/cutiful/traverse-the-universe#readme",
"bugs": "https://github.com/cutiful/traverse-the-universe/issues",
"repository": "github:cutiful/traverse-the-universe",
"author": "Spring Raindrop",
"type": "module",
"files": [
"dist/*"
],
"main": "./dist/traverse.cjs",
"browser": "./dist/traverse.min.js",
"exports": {
".": {
"import": "./dist/traverse.mjs",
"require": "./dist/traverse.cjs",
"browser": "./dist/traverse.min.js",
"default": "./dist/traverse.cjs"
},
"./props": {
"import": "./dist/props.mjs",
"require": "./dist/props.cjs",
"default": "./dist/props.cjs"
}
},
"scripts": {
"generateProps": "node scripts/generateProps.js",
"build": "rollup -c",
"lint": "run-s -c lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fix": "run-s -c fix:*",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"docs": "cp README.preamble.md README.md && jsdoc2md src/traverse.js >> README.md",
"prepublishOnly": "run-s build"
},
"dependencies": {
"@babel/runtime": "^7.18.6"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.1",
"acorn": "^8.7.1",
"astring": "^1.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.1.0",
"estree-formal": "^2.0.0",
"jest": "^29.5.0",
"jsdoc-to-markdown": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rollup": "^4.9.1"
},
"browserslist": "node >= 16, last 4 chrome versions, last 4 firefox versions",
"license": "Apache-2.0"
}