-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.83 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"private": true,
"name": "inferno-firebase",
"version": "1.0.3",
"description": "Inferno bindings for Firebase",
"repository": "magnus-bergman/inferno-firebase",
"author": "Magnus Bergman <hello@magnus.sexy> (https://magnus.sexy/)",
"license": "MIT",
"main": "index.js",
"module": "index.es6.js",
"jsnext:main": "index.es6.js",
"keywords": [
"inferno",
"infernojs",
"firebase"
],
"scripts": {
"lint": "eslint src test tools",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.js' 'test/**/*.js' 'tools/**/*.js'",
"test": "mocha --compilers js:babel-register --recursive --require jsdom-global/register",
"test:watch": "yarn test -- --reporter min --watch",
"test:cover": "nyc yarn test --reporter=html && opn coverage/index.html",
"coveralls": "nyc yarn test:cover && nyc report --reporter=text-lcov | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"prettierOptions": {
"bracketSpacing": true,
"trailingComma": "es5"
},
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime",
"syntax-jsx",
"inferno"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-inferno": "^3.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"coveralls": "^2.13.1",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-inferno": "^6.10.4",
"eslint-plugin-jsx-a11y": "^5.0.3",
"expect": "^1.20.2",
"express": "^4.15.3",
"firebase": "^4.0.0",
"husky": "^0.13.3",
"inferno": "^3.1.2",
"inferno-component": "^3.1.2",
"inferno-create-element": "^3.1.2",
"inferno-test-utils": "^3.1.2",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^10.1.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^3.4.2",
"mocha": "^3.4.1",
"nyc": "^10.3.2",
"opn-cli": "^3.1.0",
"prettier": "^1.3.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"sinon": "^2.2.0",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2"
},
"dependencies": {
"invariant": "^2.2.2",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"firebase": "^3.9.0 || ^4.0.0",
"inferno": "^3.1.2",
"inferno-component": "^3.1.2",
"inferno-create-element": "^3.1.2"
}
}