-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"private": false,
"name": "firebase-service",
"version": "6.0.2",
"author": {
"name": "Aaron Greenwald",
"email": "[email protected]",
"url": ""
},
"main": "dist/src/experimental/firebase-service.js",
"module": "dist/src/experimental/firebase-service.js",
"scripts": {
"start": "yoshi start",
"pretest": "yoshi lint && yoshi build",
"lint": "yoshi lint",
"build": ":",
"test": "yoshi test --mocha",
"watch": "export WIX_NODE_BUILD_WATCH_MODE=true; npm run test",
"release": "yoshi release",
"prepush": "yoshi lint"
},
"dependencies": {
"firebase": "^9.18.0",
"uuid": "^3.0.1",
"sinon-chai": "^2.12.0"
},
"eslintConfig": {
"extends": "@wix/eslint-config-yoshi",
"root": true
},
"devDependencies": {
"@wix/yoshi": "^4.324.0",
"@wix/eslint-config-yoshi": "5.9.3",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"husky": "^0.13.4",
"proxyquire": "^1.8.0",
"react-native-extended-cli": "^1.0.209",
"sinon": "^2.4.1"
},
"publishConfig": {
"registry": "http://npm.dev.wixpress.com",
"versionBumpStrategy": "patch"
}
}