forked from firebase/snippets-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 730 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "snippets-node",
"version": "1.0.0",
"description": "Code snippets used in Node.js documentation on firebase.google.com",
"author": "Firebase (https://firebase.google.com/)",
"license": "Apache-2.0",
"scripts": {
"test": "pnpm -r --workspace-concurrency=1 --aggregate-output run test",
"compile": "pnpm -r --workspace-concurrency=4 --aggregate-output run compile",
"bootstrap": "pnpm -r install",
"lint": "find . -type f -name \"*.js\" -not -path \"*node_modules*\" | xargs eslint"
},
"devDependencies": {
"@types/node": "^20.2.4",
"eslint": "^8.41.0",
"eslint-config-google": "^0.14.0",
"firebase-tools": "^12.2.1",
"pnpm": "^8.5.1",
"typescript": "^5.0.4"
}
}