-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "fireplan",
"version": "3.2.0",
"description": "Compiler for an alternative YAML-based syntax for Firebase security rules.",
"engines": {
"node": ">=14.0"
},
"packageManager": "yarn@4.13.0",
"keywords": [
"Firebase",
"command",
"cli",
"security",
"rules"
],
"main": "index.js",
"bin": "fireplan",
"scripts": {
"lint": "eslint *.js fireplan",
"update": "yarn up -R '*' && yarn dedupe --strategy highest",
"latest": "yarn npm-check-updates -i -m --packageManager yarn --install never && yarn install",
"upgrade": "reviewable-upgrade"
},
"repository": "https://github.com/Reviewable/fireplan",
"author": {
"name": "Piotr Kaminski",
"email": "piotr@reviewable.io"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Reviewable/fireplan/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/Reviewable/fireplan/issues"
},
"homepage": "https://github.com/Reviewable/fireplan",
"dependencies": {
"clone": "2",
"escodegen": "2",
"esprima": "4",
"estraverse": "5.3.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.16",
"yargs": "17.5.1"
},
"devDependencies": {
"eslint": "9.x",
"npm-check-updates": "^20.0.0",
"reviewable-configs": "Reviewable/reviewable-configs"
}
}