-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1002 Bytes
/
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
{
"name": "instant-firestore",
"version": "1.0.8",
"description": "Firebase Cloud Firestore ORM to ease common tasks such as creating, finding, updating and deleting documents.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require babel-core/register --require babel-polyfill",
"build": "babel ./src -d ./lib",
"build:watch": "babel -w ./src -d ./lib",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjmyles/instant-firestore.git"
},
"keywords": [
"firestore"
],
"author": "Craig Myles",
"license": "MIT",
"dependencies": {
"instant-firestore-utils": "^1.0.3",
"instant-utils": "0.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"mocha": "^5.2.0"
}
}