-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 894 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
35
36
{
"name": "firebase-jest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --no-cache",
"mocha": "./node_modules/.bin/mocha src/**/__tests__/**/*.mocha.js --compilers js:babel-register --full-trace"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"jest": "^16.0.2",
"mocha": "^3.1.2"
},
"jest": {
"verbose": true,
"rootDir": "",
"testPathDirs": ["<rootDir>/src/"],
"testRegex": ".*/__tests__/.*\\.jest\\.js$",
"notify": true
},
"dependencies": {
"firebase": "^3.5.1"
},
"engines": {
"npm": "3.10.9",
"node": "4.3.2"
}
}