-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 761 Bytes
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
{
"name": "firewings",
"version": "1.0.3",
"license": "MIT",
"description": "Give Firebase wings! - Useful helper-functions for Firebase's JS SDK.",
"main": "lib/index.js",
"author": "Pascal Luther",
"repository": "https://github.com/lupas/firewings",
"keywords": [
"firebase",
"firestore",
"helper-functions"
],
"scripts": {
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"build": "tsc",
"publishToNpm": "npm run build && npm publish",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"devDependencies": {
"prettier": "1.19.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"vuepress": "^1.3.1",
"firebase": "latest"
}
}