-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "firebase-denormalizer",
"version": "2.0.0",
"author": "Denes Pal <dsdenes@gmail.com>",
"description": "Automatic denormalized collections housekeeping and multi key filtering for Firebase Database",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"test": "jest src/",
"test:lib": "jest --forceExit lib/",
"pretest:lib": "yarn build",
"watch": "jest src/ --watch",
"build": "babel src/ -d lib",
"prepublish": "yarn build",
"release-patch": "npm version patch && npm publish",
"release-minor": "npm version minor && npm publish",
"release-major": "npm version major && npm publish"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"firebase": "^4.1.4",
"flow-bin": "^0.51.0",
"jest": "^20.0.4",
"regenerator-runtime": "^0.10.5",
"dotenv": "^4.0.0"
},
"dependencies": {
"firebase-encode": "^0.0.5",
"lodash.compact": "^3.0.1",
"lodash.flattendeep": "^4.4.0",
"lodash.intersection": "^4.4.0",
"lodash.map": "^4.6.0",
"lodash.mapvalues": "^4.6.0",
"lodash.mergewith": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"pluralize": "^6.0.0"
}
}