-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "@novuminsights/unlock-protocol-firebase",
"version": "0.1.0",
"description": "Simple integration of Firebase authentication and authorization with Unlock locks",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"build": "tsc && browserify --standalone unlockProtocolFirebaseBrowser --external firebase/functions --external firebase/installations ./src/browser.ts -p [ tsify --noImplicitAny ] > ./lib/browser.js"
},
"author": "David Layton",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"commonjs": "^0.0.1",
"firebase-functions-test": "^0.3.0",
"mocha": "^9.0.3",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-mock-imports": "^1.3.7",
"ts-node": "^10.1.0",
"tsify": "^5.0.4",
"typescript": "^4.3.5",
"firebase": "^8.8.0"
},
"dependencies": {
"@unlock-protocol/unlock-js": "^0.19.2",
"ethers": "^5.3.0",
"firebase-admin": "^9.10.0",
"firebase-functions": "^3.14.1",
"web3": "^1.4.0"
}
}