-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
{
"name": "goldstein",
"version": "7.3.2",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "JavaScript with no limits",
"exports": {
".": "./packages/goldstein/index.js"
},
"imports": {
"#operator": "./packages/operator/index.js"
},
"bin": {
"gs": "bin/gs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderaiser/goldstein.git"
},
"keywords": [
"JavaScript",
"parser",
"compiler"
],
"scripts": {
"test": "madrun test",
"coverage": "madrun coverage",
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"wisdom": "madrun wisdom"
},
"dependencies": {
"@putout/plugin-declare": "^8.0.0",
"@putout/plugin-logical-expressions": "^8.0.0",
"@putout/plugin-try-catch": "^8.0.0",
"@putout/printer": "^18.0.0",
"acorn": "^8.7.1",
"acorn-loose": "^8.5.2",
"acorn-typescript": "^1.4.13",
"estree-to-babel": "^12.0.0",
"estree-util-attach-comments": "^3.0.0",
"putout": "^42.0.1",
"try-catch": "^4.0.2"
},
"license": "MIT",
"devDependencies": {
"@putout/eslint-flat": "^4.0.0",
"@putout/plugin-goldstein": "./rules/goldstein",
"@putout/test": "^15.0.0",
"check-dts": "^0.9.0",
"esbuild": "^0.27.0",
"esbuild-node-builtins": "^0.1.0",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.0.0",
"madrun": "^13.0.0",
"mock-require": "^3.0.3",
"montag": "^1.2.1",
"nodemon": "^3.0.1",
"redlint": "^6.0.0",
"runsome": "^1.0.0",
"superc8": "^12.2.4",
"supertape": "^12.0.0",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}