forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "@fluid-internal/getkeys",
"version": "1.0.0",
"private": true,
"description": "",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "tools/getkeys"
},
"license": "MIT",
"author": "Microsoft and contributors",
"type": "module",
"main": "index.js",
"scripts": {
"eslint": "eslint ./index.js",
"eslint:fix": "eslint ./index.js --fix",
"format": "npm run prettier:fix",
"preinstall": "node ../../scripts/only-pnpm.cjs",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --cache --ignore-path ../../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore",
"start": "node ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@fluidframework/tool-utils": "^0.35.0"
},
"devDependencies": {
"@fluidframework/eslint-config-fluid": "^5.2.0",
"eslint": "~8.55.0",
"prettier": "~3.0.3",
"typescript": "~4.5.5"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"pnpm": {
"overrides": {
"qs": "^6.11.0"
}
}
}