-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
78 lines (78 loc) · 2.06 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
75
76
77
78
{
"name": "@putout/engine-parser",
"version": "5.0.0",
"type": "commonjs",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "putout parser",
"homepage": "https://github.com/coderaiser/putout/tree/master/packages/engine-parser#readme",
"main": "./lib/parser.js",
"release": false,
"tag": false,
"changelog": false,
"exports": {
".": "./lib/parser.js",
"./acorn": "./lib/parsers/acorn.js",
"./babel": "./lib/parsers/babel/index.js",
"./babel/options": "./lib/parsers/babel/options.js",
"./babel/plugins": "./lib/parsers/babel/plugins.js",
"./espree": "./lib/parsers/espree.js",
"./esprima": "./lib/parsers/esprima.js"
},
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/putout.git"
},
"scripts": {
"test": "madrun test",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"coverage": "madrun coverage",
"report": "madrun report"
},
"dependencies": {
"@babel/generator": "^7.12.5",
"@babel/parser": "^7.15.0",
"@babel/template": "^7.10.4",
"@babel/types": "^7.12.6",
"@putout/recast": "^1.1.0",
"estree-to-babel": "^5.0.0",
"nano-memoize": "^1.1.8",
"once": "^1.4.0",
"try-catch": "^3.0.0"
},
"keywords": [
"putout",
"putout-engine"
],
"devDependencies": {
"@cloudcmd/stub": "^3.0.0",
"acorn": "^8.1.1",
"acorn-jsx": "^5.0.2",
"acorn-stage3": "^4.0.0",
"c8": "^7.5.0",
"eslint": "^8.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-putout": "^14.0.0",
"espree": "^9.0.0",
"esprima": "^4.0.1",
"hermes-parser": "^0.6.0",
"just-camel-case": "^4.0.2",
"lerna": "^4.0.0",
"madrun": "^9.0.0",
"montag": "^1.0.0",
"nodemon": "^2.0.1",
"putout": "*",
"supertape": "^7.0.0",
"tenko": "^2.0.0"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}