-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 977 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 977 Bytes
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": "@adwerx/prettier-plugin-ruby",
"version": "0.14.3",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"format": "npm run build && prettier --plugin ./build",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"preversion": "npm run build && npm run test"
},
"dependencies": {
"@adwerx/lib-ruby-parser-wasm-bindings": "^0.1.0"
},
"peerDependencies": {
"prettier": "^2.7"
},
"devDependencies": {
"@jest/globals": "^29.1.2",
"@types/prettier": "^2.7.1",
"jest": "^29.1.2",
"marked": "^4.1.1",
"prettier": "~2.7",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"files": [
"build/*"
],
"prettierz": {
"plugins": [
"/app/build"
],
"overrides": [
{
"files": "*.rb",
"options": {
"parser": "ruby"
},
"excludeFiles": [
"src/"
]
}
]
}
}