-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mobx-firebase-database",
"version": "0.0.0-development",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run test:i",
"build": "rm -rf ./dist/ && rollup -c",
"test:i": "jest --watch --coverage",
"test": "jest --coverage",
"prepublish": "npm run test && npm run build",
"commit": "git-cz",
"setup:semantic-release": "npx semantic-release-cli setup",
"semantic-release": "semantic-release"
},
"husky": {
"pre-commit": "prettier src/* --write",
"pre-push": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/rakannimer/mobx-firebase-database"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.3",
"@types/lodash.memoize": "^4.1.4",
"comment-json": "^1.1.3",
"firebase": "^5.5.3",
"git-cz": "^1.7.1",
"husky": "^1.1.1",
"jest": "^23.6.0",
"mobx": "^5.5.0",
"parcel-bundler": "^1.10.1",
"prettier": "^1.14.3",
"rollup": "^0.66.4",
"rollup-plugin-typescript2": "^0.17.1",
"semantic-release": "^15.9.17",
"ts-jest": "^23.10.3",
"typescript": "^3.1.1"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/*.{ts,tsx}"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/build/",
"/dist/"
]
},
"files": [
"dist/"
],
"description": "Tame your firebase database with MobX",
"dependencies": {
"firebase-array": "^1.1.2",
"get-firebase-ref": "^1.1.1",
"initialize-firebase-app": "^1.0.0",
"lodash.memoize": "^4.1.2"
},
"peerDependencies": {
"mobx": ">=4"
}
}