-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"type": "commonjs",
"devDependencies": {
"@markw65/peggy-optimizer": "^1.0.1",
"@types/prettier": "^2.6.1",
"esbuild": "^0.17.16",
"eslint": "^8.10.0",
"globby": "^13.1.1",
"peggy": "^3.0.2",
"prettier-plugin-pegjs": "^1.0.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"prettier": ">2.5.1"
},
"scripts": {
"test": "node test/test.mjs --validate-locations=true && node test/test.mjs --check-mss=true && node test/test.mjs",
"test-quick": "node test/test.mjs --projects=test/test-cases",
"test-locations": "node test/test.mjs --validate-locations=true",
"test-mss": "node test/test.mjs --check-mss=true",
"watch": "node esbuild.mjs --watch",
"build-debug": "node esbuild.mjs",
"build-release": "node esbuild.mjs --release",
"pretty": "prettier --plugin build/prettier-plugin-monkeyc.cjs example/AnalogView.mc",
"prepack": "npm run build-release"
},
"name": "@markw65/prettier-plugin-monkeyc",
"version": "1.0.61",
"description": "A prettier plugin for Garmin monkey-c",
"main": "build/prettier-plugin-monkeyc.cjs",
"types": "build/prettier-plugin-monkeyc.d.ts",
"files": [
"build/prettier-plugin-monkeyc.cjs",
"build/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/markw65/prettier-plugin-monkeyc.git"
},
"keywords": [
"prettier",
"monkeyc"
],
"author": "Mark Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/markw65/prettier-plugin-monkeyc/issues"
},
"homepage": "https://github.com/markw65/prettier-plugin-monkeyc#readme"
}