-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "firestore-ref",
"version": "0.1.4",
"description": "Create firebase's firestore document/collection deep references with 'URL like' path",
"main": "./build/firestore-ref.umd.js",
"scripts": {
"lint": "eslint ./src",
"pretest": "rollup -c rollup-test.config.js",
"test-mocha": "mocha ./test/build/mocha",
"test": "npm run test-mocha",
"build-browser": "rollup --config rollup-min.config.js",
"build-umd": "rollup -c",
"prebuild": "npm run lint && npm run test",
"build": "npm run build-umd && npm run build-browser"
},
"keywords": [
"firebase",
"firestore",
"javascript",
"node.js",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/gabrigcl/firestore-ref.git"
},
"author": "Gabriel Castro",
"license": "MIT",
"module": "./build/firestore-ref.es.js",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-es5": "^0.5.0",
"firebase": "^5.9.3",
"mocha": "^6.1.2",
"rollup": "^1.6.0",
"rollup-plugin-banner": "^0.2.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-uglify": "^6.0.2"
},
"peerDependencies": {
"firebase": "^5.9.x"
}
}