-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
88 lines (88 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-firestore",
"version": "0.0.0-semantically-released",
"description": "React components to fetch data from firestore using render props",
"author": "Andrew Walton",
"license": "MIT",
"homepage": "https://github.com/green-arrow/react-firestore#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/green-arrow/react-firestore.git"
},
"bugs": {
"url": "https://github.com/green-arrow/react-firestore/issues"
},
"main": "dist/react-firestore.cjs.js",
"jsnext:main": "dist/react-firestore.esm.js",
"module": "dist/react-firestore.esm.js",
"scripts": {
"cm": "git-cz",
"build": "kcd-scripts build --bundle --p-react",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:build": "kcd-scripts test --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"validate": "kcd-scripts validate lint,build-and-test,test:cover",
"prepare": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"files": [
"dist",
"preact"
],
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": "off",
"no-eq-null": "off",
"eqeqeq": "off",
"react/jsx-indent": "off",
"react/no-unused-state": "off",
"complexity": [
"error",
12
]
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"__tests__"
],
"keywords": [
"react",
"firestore",
"firebase"
],
"dependencies": {
"@babel/runtime": "^7.3.4",
"hoist-non-react-statics": "^3.3.0"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16.3"
},
"devDependencies": {
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"kcd-scripts": "^1.1.0",
"preact": "^8.4.2",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}