generated from brianneisler/node-package-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 3.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "firetree",
"version": "0.1.5",
"description": "AST parser and generator for Firebase Firestore and Storage security rules",
"author": "Brian Neisler <hello@brianneisler.com>",
"license": "Apache-2.0",
"homepage": "https://firetree.io",
"repository": {
"type": "git",
"url": "https://github.com/brianneisler/firetree.git"
},
"bugs": {
"url": "https://github.com/brianneisler/firetree/issues"
},
"bin": {
"firetree": "./bin/firetree"
},
"main": "./index.js",
"module": "./index.module.js",
"exports": {
".": "./index.js",
"./ast": "./dist/ast/index.js",
"./constants": "./dist/constants/index.js",
"./context": "./dist/context/index.js",
"./generator": "./dist/generator/index.js",
"./parser": "./dist/parser/index.js",
"./parser/nodes": "./dist/parser/nodes/index.js",
"./parser/pipes": "./dist/parser/pipes/index.js",
"./parser/tokens": "./dist/parser/tokens/index.js",
"./token": "./dist/token/index.js",
"./utils": "./dist/utils/index.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=10.0"
},
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"cleanse": "bash ./scripts/cleanse.sh",
"docs:generate": "bash ./scripts/docs-generate.sh",
"lint": "bash ./scripts/lint.sh",
"lint:staged": "bash ./scripts/lint-staged.sh",
"prettier": "bash ./scripts/prettier.sh",
"prettier:staged": "bash ./scripts/prettier-staged.sh",
"security:audit": "bash ./scripts/security-audit.sh",
"setup": "bash ./scripts/setup.sh",
"test": "bash ./scripts/test.sh",
"test:ci": "bash ./scripts/test-ci.sh",
"test:debug": "bash ./scripts/test-debug.sh",
"watch": "bash ./scripts/watch.sh"
},
"dependencies": {
"buffer": "^6.0.3",
"commander": "^7.2.0",
"core-js": "^3.9.1",
"fs-extra": "^9.0.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.21",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"ramda": "^0.27.1",
"source-map-support": "^0.5.19",
"string-to-stream": "^3.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.8",
"@babel/runtime": "^7.13.10",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"dox": "^0.9.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"glob": "^7.1.6",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"markdown-magic": "^1.0.0",
"prettier": "^2.2.1"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"ast",
"firebase",
"firestore",
"generator",
"parser",
"rules",
"security"
]
}