-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "firebase-device-store",
"version": "0.3.0",
"description": "Automatically store Device and FCM token information for Firebase Auth users in Cloud Firestore.",
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf ./dist",
"dev": "npm run clean && rollup -c -w",
"prepublish": "npm run build"
},
"main": "dist/index.node.cjs.js",
"browser": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/csfrequency/firebase-device-store-js-sdk.git"
},
"author": "CS Frequency Limited (https://csfrequency.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/csfrequency/firebase-device-store-js-sdk/issues"
},
"homepage": "https://github.com/csfrequency/firebase-device-store-js-sdk#readme",
"dependencies": {
"detect-browser": "^4.5.0",
"nanoid": "^2.0.2"
},
"devDependencies": {
"@types/nanoid": "^2.0.0",
"firebase": "^5.9.4",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-copy": "^1.1.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.4.3"
},
"peerDependencies": {
"firebase": "^5.x.x"
},
"typings": "dist/index.d.ts"
}