-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
83 lines (83 loc) · 2.79 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
{
"name": "firedux",
"version": "1.1.1",
"description": "Firebase + Redux for ReactJS",
"repository": "AndersDJohnson/firedux",
"main": "dist/src/index.js",
"scripts": {
"verb": "verb",
"test": "npm-run-all test:*",
"test:lint": "npm-run-all test:lint:*",
"test:lint:src": "eslint src",
"test:lint:test": "eslint test",
"test:unit": "npm-run-all test:unit:*",
"test:unit:firebase@2": "yarn add firebase@2 && yarn _test:unit:firebase@2",
"test:unit:firebase@3": "yarn add firebase@3 && yarn _test:unit:firebase@3",
"_test:unit:firebase@2": "FIREBASE_VERSION=2 yarn _test:unit",
"_test:unit:firebase@3": "FIREBASE_VERSION=3 yarn _test:unit",
"_test:unit": "mocha --require babel-core/register",
"build:node:test": "babel test/index.js -o dist/test/index.js",
"build:node:test:watch": "babel test/index.js -o dist/test/index.js -w",
"build:node:src": "babel src/index.js -o dist/src/index.js",
"build:node:src:watch": "babel src/index.js -o dist/src/index.js -w",
"build:browser:src": "webpack",
"build:browser": "yarn build:browser:src",
"build:node": "npm-run-all build:node:*",
"build": "npm-run-all build:*",
"version": "standard-version",
"publish-please": "publish-please",
"prepublish": "publish-please guard",
"precommit": "yarn test:lint",
"commitmsg": "validate-commit-msg",
"prepush": "yarn test",
"postmerge": "yarn addnstall",
"postrewrite": "yarn addnstall",
"analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"author": "Anders D. Johnson (https://andersdjohnson.com)",
"funding": "https://github.com/sponsors/AndersDJohnson",
"bugs": {
"url": "https://github.com/AndersDJohnson/firedux/issues"
},
"license": "MIT",
"keywords": [
"redux",
"firebase",
"react",
"flux"
],
"devDependencies": {
"arrow-mocha": "^1.0.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"eslint": "^3.10.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.2",
"mocha": "^3.0.2",
"npm-run-all": "^4.0.1",
"publish-please": "^2.2.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"standard-version": "^4.0.0",
"validate-commit-msg": "^2.6.1",
"watchify": "^3.7.0",
"webpack": "^2.5.1",
"webpack-bundle-analyzer": "^2.8.1",
"webpack-umd-external": "^1.0.2"
},
"dependencies": {
"debug": "^2.2.0",
"firebase": "3",
"google-analytics-js": "^0.1.0",
"lodash": "^4.15.0",
"updeep": "^1.0.0"
}
}