-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.66 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.66 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
{
"name": "prettier-plugin-firestore-rules",
"version": "0.1.5",
"description": "Firestore Rules formatter plugin for prettier",
"main": "out/index.js",
"files": [
"out"
],
"scripts": {
"build": "tsc -p ./",
"compile:grammar": "pegjs -o src/parser/parser.js src/parser/grammar.pegjs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"prepublishOnly": "yarn compile:grammar && yarn build && yarn lint && yarn test",
"prepack": "yarn prepublishOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChFlick/prettier-plugin-firestore-rules.git"
},
"keywords": [
"prettier",
"prettier-plugin",
"plugin",
"firebase",
"firestore"
],
"author": {
"name": "Christoph Flick",
"email": "christophflick@gmx.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ChFlick/prettier-plugin-firestore-rules/issues"
},
"homepage": "https://github.com/ChFlick/prettier-plugin-firestore-rules",
"dependencies": {
"prettier": "^2.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@types/pegjs": "^0.10.2",
"@types/prettier": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"pegjs": "^0.10.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=11"
}
}