-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "@mtbjorn/firestorm",
"version": "0.0.5",
"description": "A driver for interacting with Firebase data storage",
"main": "dist/mtbjorn-firestorm.js",
"entry": "src/index.js",
"scripts": {
"build:prod": "webpack --config=webpack.config.prod.js",
"build:dev": "webpack --config=webpack.config.dev.js",
"build": "npm run build:dev",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build:prod"
},
"keywords": [
"firebase",
"utility",
"utilities"
],
"files": [
"/dist"
],
"homepage": "https://github.com/CAndRyan/MTBjorn.Firestorm",
"bugs": {
"url": "https://github.com/CAndRyan/MTBjorn.Firestorm/issues",
"email": "[email protected]"
},
"author": "@CAndRyan",
"repository": {
"type": "git",
"url": "https://github.com/CAndRyan/MTBjorn.Firestorm.git"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"source-map-loader": "^3.0.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"firebase": "^9.6.4",
"uuid": "^8.3.2"
}
}