forked from prettier/plugin-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "@prettier/plugin-lua",
"version": "0.0.1",
"description": "Prettier Lua Plugin",
"repository": "prettier/plugin-lua",
"author": "Suchipi <[email protected]>",
"license": "MIT",
"main": "src",
"files": [
"src"
],
"dependencies": {
"luaparse": "^0.3.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "4.19.1",
"eslint-config-unobtrusive": "^1.2.2",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-prettier": "2.6.0",
"jest": "22.4.3",
"jest-runner-eslint": "0.4.0",
"prettier": "^2.0.5",
"prettier-from-github": "prettier/prettier#4c464133ac37a966c792cacc660853d74c776841"
},
"peerDependencies": {
"prettier": ">=1.0.0"
},
"scripts": {
"test": "cross-env AST_COMPARE=1 jest",
"test:watch": "cross-env AST_COMPARE=1 jest --watchAll --updateSnapshot",
"prettier": "prettier --plugin=. --parser=lua"
},
"jest": {
"projects": [
"<rootDir>/jest.*.config.js"
]
}
}