-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
45
46
47
48
49
{
"name": "firebased",
"version": "0.0.6",
"description": "Higher order Firebase component for React",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --loose --out-dir lib",
"test": "mocha",
"tdd": "mocha --watch",
"prepublish": "npm run clean && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/captivationsoftware/firebased.git"
},
"keywords": [
"React",
"Firebase"
],
"author": "Captivation Software, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/captivationsoftware/firebased/issues"
},
"homepage": "https://github.com/captivationsoftware/firebased#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5"
},
"peerDependencies": {
"react": "^15.0.0"
},
"dependencies": {
"firebase": "^3.2.1",
"lodash": "^4.14.0"
}
}