-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.75 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
54
55
{
"name": "@csquare/cloud-functions-utils",
"version": "0.1.1",
"description": "Set of utilities to for Google Cloud Cloud Functions.",
"keywords": [
"google-cloud",
"cloud-functions",
"pubsub",
"utils"
],
"homepage": "https://github.com/csquare-ai/pubsub-utils",
"bugs": "https://github.com/csquare-ai/pubsub-utils/issues",
"license": "MIT",
"author": "Mathieu Bour <mathieu@csquare.ai> (https://github.com/mathieu-bour)",
"contributors": [],
"repository": "github:csquare-ai/pubsub-utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"prepare": " [ \"$NODE_ENV\"==\"production\" ]; echo \"$?\" || npx is-ci || husky install",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"format": "prettier --write \"**/*.{js,ts,yml,yaml,json}\"",
"format:check": "prettier --check \"**/*.{js,ts,yml,yaml,json}\"",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"lint:fix": "eslint \"{src,tests}/**/*.ts\" --fix",
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@csquare/prettier-config": "^1.1.2",
"@types/jest": "^26.0.22",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"js-yaml": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"prettier": "@csquare/prettier-config"
}