-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "estree-util-value-to-estree",
"description": "Convert a JavaScript value to an estree expression",
"version": "3.3.2",
"main": "./dist/estree-util-value-to-estree.js",
"exports": "./dist/estree-util-value-to-estree.js",
"type": "module",
"files": [
"dist",
"src",
"!test*"
],
"author": "Remco Haszing <[email protected]>",
"license": "MIT",
"repository": "remcohaszing/estree-util-value-to-estree",
"bugs": "https://github.com/remcohaszing/estree-util-value-to-estree/issues",
"homepage": "https://github.com/remcohaszing/estree-util-value-to-estree#readme",
"funding": "https://github.com/sponsors/remcohaszing",
"keywords": [
"esast",
"estree",
"estree-util",
"language",
"unist"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --enable-source-maps dist/test.js"
},
"dependencies": {
"@types/estree": "^1.0.0"
},
"devDependencies": {
"@js-temporal/polyfill": "^0.4.0",
"@types/node": "^22.0.0",
"astring": "^1.0.0",
"c8": "^9.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"snapshot-fixtures": "^1.0.0",
"source-map": "^0.7.0",
"typescript": "^5.0.0"
}
}