-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.68 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "moltres",
"version": "0.5.12",
"description": "Firebase application framework",
"author": "Brian Neisler <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://moltres.org",
"repository": {
"type": "git",
"url": "https://github.com/brianneisler/moltres.git"
},
"bugs": {
"url": "https://github.com/brianneisler/moltres/issues"
},
"bin": {
"moltres": "./bin/moltres"
},
"main": "./index.js",
"module": "./index.module.js",
"exports": {
".": "./index.module.js",
"./config": "./src/config/index.js",
"./constants": "./src/constants/index.js",
"./constants/Code": "./src/constants/index.js",
"./constants/StatusCode": "./src/constants/index.js",
"./db": "./src/db/index.js",
"./error": "./src/error/index.js",
"./fs": "./src/fs/index.js",
"./lang": "./src/lang/index.js",
"./lang/classes": "./src/lang/classes/index.js",
"./lang/constants": "./src/lang/constants/index.js",
"./path": "./src/path/index.js",
"./process": "./src/process/index.js",
"./request": "./src/request/index.js",
"./schema": "./src/schema/index.js",
"./string": "./src/string/index.js",
"./test": "./src/test/index.js",
"./url": "./src/url/index.js",
"./zip": "./src/zip/index.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=10.12"
},
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"cleanse": "bash ./scripts/cleanse.sh",
"deploy": "bash ./scripts/deploy.sh",
"docs-generate": "bash ./scripts/docs-generate.sh",
"lint": "bash ./scripts/lint.sh",
"lint-ci": "bash ./scripts/lint-ci.sh",
"lint-staged": "bash ./scripts/lint-staged.sh",
"prettier": "bash ./scripts/prettier.sh",
"prettier-ci": "bash ./scripts/prettier-ci.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": {
"acorn": "^8.4.1",
"acorn-walk": "^8.1.0",
"adm-zip": "^0.5.5",
"archiver": "^5.3.0",
"bluebird": "^3.7.2",
"commander": "^8.0.0",
"core-js": "^3.15.1",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"immutable": "^4.0.0-rc.12",
"invariant": "^2.2.4",
"is-url": "^1.2.4",
"joi": "^17.4.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"memfs": "^3.2.2",
"path-to-regexp": "^6.2.0",
"query-string": "^7.0.1",
"ramda": "^0.27.1",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.5",
"codecov": "^3.8.2",
"dox": "^0.9.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"glob": "^7.1.7",
"husky": "^4.3.8",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"markdown-magic": "^2.2.0",
"minimatch": "^3.0.4",
"nvm-guard": "^1.0.4",
"prettier": "^2.3.2"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"app",
"firebase",
"framework",
"react",
"react-native"
]
}