-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 KB
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
{
"name": "@streamdevs/lights-lul",
"version": "3.10.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/streamdevs/lights.git",
"author": "streamdevs",
"contributors": [
{
"name": "Santiago Martín Agra",
"email": "open-source@santiagomartin.dev",
"url": "https://santiagomartin.dev"
}
],
"license": "CC-BY-4.0",
"scripts": {
"build": "yarn build:ts && yarn build:types",
"build:check": "yarn build:ts --noEmit",
"build:types": "yarn build:ts --declaration true",
"build:ts": "tsc --project ./src",
"test": "APP_ENV='test' firebase emulators:exec --project example 'jest --detectOpenHandles'",
"test:watch:firestore": "APP_ENV='test' firebase emulators:exec --project example 'jest --watch --detectOpenHandles'",
"firestore:start": "firebase emulators:start --project example",
"test:watch": "APP_ENV='test' jest --watch --detectOpenHandles"
},
"devDependencies": {
"@types/faker": "^5.1.2",
"@types/jest": "^25.2.2",
"@types/lodash": "^4.14.162",
"@types/luxon": "^1.25.0",
"@types/node": "^14.0.1",
"@types/node-fetch": "^2.5.7",
"factory.ts": "^0.5.1",
"faker": "^5.1.0",
"firebase-tools": "^8.14.1",
"jest": "^26.0.1",
"nock": "^13.0.4",
"ts-jest": "^26.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"@google-cloud/firestore": "^4.4.0",
"@google-cloud/tasks": "^2.1.1",
"lodash": "^4.17.20",
"luxon": "^2.5.2",
"node-fetch": "^2.6.1",
"string-to-color": "^2.2.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}