-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
50
{
"name": "duckbase",
"version": "0.6.2",
"description": "React + Redux Wrapper for Firebase",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/WadePeterson/duckbase.git",
"author": "Wade Peterson",
"license": "MIT",
"keywords": [
"firebase",
"react",
"redux",
"react-redux"
],
"scripts": {
"build": "rm -rf lib && tsc",
"build:test": "rm -rf testDist && tsc -p test/tsconfig.json",
"lint": "tslint \"{./**/*.ts,./**/*.tsx}\" --exclude \"{./node_modules/**,./**/*.d.ts}\"",
"prepublish": "npm run build",
"test": "npm run build:test && NODE_ENV=test mocha testDist/test/**/*.js",
"test:watch": "nodemon --ignore lib --ignore testDist -e ts,tsx -x 'npm run test --silent || true'",
"watch": "rm -rf lib && tsc --watch"
},
"dependencies": {
"@types/prop-types": "^15.5.2",
"prop-types": "^15.6.1"
},
"peerDependencies": {
"firebase": "^4.2.0",
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"redux": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"@types/react": "^16.0.40",
"@types/sinon": "^4.3.0",
"chai": "^4.1.2",
"firebase": "^4.11.0",
"mocha": "^5.0.4",
"nodemon": "^1.17.2",
"react": "^16.2.0",
"redux": "^3.7.2",
"sinon": "^4.4.6",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}