-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 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
51
52
53
{
"name": "fireplan",
"version": "3.1.3",
"description": "Compiler for an alternative YAML-based syntax for Firebase security rules.",
"engines": {
"node": ">=14.0"
},
"keywords": [
"Firebase",
"command",
"cli",
"security",
"rules"
],
"main": "index.js",
"bin": {
"fireplan": "fireplan"
},
"scripts": {
"update": "yarn upgrade-interactive --latest"
},
"repository": {
"type": "git",
"url": "https://github.com/pkaminski/fireplan.git"
},
"author": {
"name": "Piotr Kaminski",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/pkaminski/fireplan/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/pkaminski/fireplan/issues"
},
"homepage": "https://github.com/pkaminski/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": "^8.57.0",
"reviewable-configs": "Reviewable/reviewable-configs"
}
}