-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.77 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.77 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
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
{
"name": "[project-name]",
"version": "0.0.1",
"description": "[project-description]",
"author": "Brian Neisler <hello@brianneisler.com>",
"license": "Apache-2.0",
"homepage": "[project-homepage]",
"repository": {
"type": "git",
"url": "https://github.com/brianneisler/[project-name].git"
},
"bugs": {
"url": "https://github.com/brianneisler/[project-name]/issues"
},
"bin": {
"[project-name]": "./bin/[project-name]"
},
"main": "./index.js",
"module": "./index.module.js",
"exports": {
".": "./index.module.js",
"./ast": "./src/ast/index.js",
"./constants": "./src/constants/index.js",
"./context": "./src/context/index.js",
"./generator": "./src/generator/index.js",
"./minimizer": "./src/minimizer/index.js",
"./parser": "./src/parser/index.js",
"./token": "./src/token/index.js",
"./utils": "./src/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",
"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": "^5.6.0",
"commander": "^6.1.0",
"core-js": "^3.6.5",
"fs-extra": "^9.0.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.20",
"pino": "^6.6.1",
"pino-pretty": "^4.2.1",
"ramda": "^0.27.1",
"source-map-support": "^0.5.19",
"string-to-stream": "^3.0.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"codecov": "^3.7.2",
"dox": "^0.9.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"glob": "^7.1.6",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"markdown-magic": "^1.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint:staged"
],
"keywords": [
"firebase",
"firestore",
"minifier",
"minimizer",
"rules",
"security"
]
}