-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 831 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 831 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
30
31
32
33
34
35
36
{
"name": "firebase-unit-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository" :
{
"type" : "git",
"url" : "https://github.com/zirho/firebase-unit-test"
},
"scripts": {
"test": "NODE_ENV=test watch-run -p './src/**/*.js' npm run test-once",
"test-once": "NODE_ENV=test mocha -c --compilers js:babel-core/register \"./src/**/*.spec.js\""
},
"keywords": [
"nodejs",
"mocha",
"shouldjs",
"firebase",
"firebase-auth",
"firebase-database"
],
"author": "Joshua Youngjae Ji",
"license": "MIT",
"dependencies": {
"firebase": "^3.6.4",
"firebase-admin": "^4.0.4"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"watch-run": "^1.2.4",
"mocha": "^3.2.0",
"should": "^11.1.2"
}
}