forked from fstirlitz/luaparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@friday-friday/luaparse",
"version": "0.3.0",
"description": "A Lua parser in JavaScript with unist-compatible AST output",
"keywords": [
"ast",
"lua",
"luast",
"parser",
"parsing",
"unist",
"syntax-tree",
"unified"
],
"homepage": "https://github.com/ericbfriday/luaparse#readme",
"bugs": "https://github.com/ericbfriday/luaparse/issues",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "Oskar Schöldström <public@oxy.fi> (http://www.oxy.fi/)",
"contributors": [
"Eric Friday <ericfriday@gmail.com>"
],
"sideEffects": false,
"files": [
"README.md",
"LICENSE",
"luaparse.js",
"luaparse.mjs",
"luaparse.d.ts",
"bin/luaparse"
],
"main": "luaparse.js",
"types": "luaparse.d.ts",
"exports": {
".": {
"import": {
"types": "./luaparse.d.ts",
"default": "./luaparse.mjs"
},
"require": {
"types": "./luaparse.d.ts",
"default": "./luaparse.js"
}
}
},
"bin": {
"luaparse": "bin/luaparse"
},
"man": "./docs/luaparse.1",
"repository": {
"type": "git",
"url": "https://github.com/ericbfriday/luaparse.git"
},
"workspaces": [
".",
"packages/*"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build:packages && changeset publish",
"build:packages": "npm run build --workspaces --if-present",
"test:all": "npm test && npm run test:packages",
"format": "remark . -qfo && prettier . -w --log-level warn",
"test": "node test/runner.js --console",
"test:packages": "npm run test-api --workspaces --if-present",
"bench:luast": "node benchmarks/luast-emission.js"
},
"dependencies": {
"@friday-friday/luast": "^0.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"benchmark": "~1.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-wooorm": "^10.0.0",
"spec": "1.0.1"
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"remarkConfig": {
"plugins": [
"remark-preset-wooorm"
]
}
}