-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.12 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
{
"name": "@osnova/events-firebase",
"version": "0.2.2",
"description": "@osnova/events bindings for Firebase",
"author": "Alexander Snov",
"license": "MIT",
"private": false,
"main": "dist/osnova-events-firebase.cjs.js",
"module": "dist/osnova-events-firebase.esm.js",
"browser": "dist/osnova-events-firebase.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean:dist": "yarn rimraf dist",
"build:types": "tsc -p . --emitDeclarationOnly",
"build:code": "rollup -c",
"build": "yarn clean:dist && yarn build:types && yarn build:code",
"dev": "rollup -c -w",
"lint": "eslint . --ext .js,.ts",
"prepare:files": "node scripts/prepare-files.js",
"prepare:all": "yarn build && yarn prepare:files",
"publish:npm": "node scripts/publish.js",
"release": "yarn test && yarn prepare:all && npm run publish:npm",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky install",
"test": "jest --passWithNoTests"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@osnova/events": "0.33.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-jest": "^26.6.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"firebase": "9.6.5",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"pinst": "^2.1.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"tslib": "^2.1.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@osnova/events": "0.33.0",
"firebase": "9.6.5"
},
"dependencies": {
"@osnova/firebase-client": "0.9.10"
}
}