-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
{
"name": "firebase-subscriber",
"version": "9.1.0",
"description": "Firebase wrapper handling auth, re-auth, de-registering, and more",
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && babel src --out-dir dist",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix --verbose | snazzy",
"test": "NODE_ENV=test NODE_PATH=. mocha -r test/support.js --compilers js:babel-register --recursive 'test/**/*.test.js' -w",
"test:ci": "yarn lint && NODE_ENV=test NODE_PATH=. mocha -r test/support.js --compilers js:babel-register --recursive 'test/**/*.test.js'",
"start": "webpack serve --history-api-fallback --hot --progress --port 3009",
"clean": "rimraf dist",
"release:beta": "yarn run build && release pre beta && yarn publish",
"release:patch": "yarn run build && release patch && yarn publish",
"release:minor": "yarn run build && release minor && yarn publish",
"release:major": "yarn run build && release major && yarn publish"
},
"author": "",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.2.8"
},
"standard": {
"env": [
"mocha"
],
"globals": [
"expect",
"sinon",
"$"
]
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-plugin-rewire": "^1.2.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.5.2",
"bluebird": "^3.3.1",
"chai": "^3.5.0",
"firebase": "^9.6.1",
"mocha": "^2.4.5",
"release": "6.1.0",
"rewire": "^2.5.1",
"rimraf": "^2.6.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"peerDependencies": {
"firebase": ">= 9",
"@react-native-async-storage/async-storage": ">= 1.17.7"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
}
}
}