-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
45
46
47
{
"name": "@dcl/platform-server-commons",
"version": "0.0.0-development",
"description": "Platform's Http Server Common utils",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"test": "jest --forceExit --detectOpenHandles --verbose",
"test:coverage": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/platform-server-commons.git"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"keywords": [
"middleware",
"well-known-components"
],
"author": "Decentraland",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/platform-server-commons/issues"
},
"homepage": "https://github.com/decentraland/platform-server-commons#readme",
"dependencies": {
"@well-known-components/http-server": "^2.1.0",
"@well-known-components/interfaces": "^1.4.3",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@dcl/eslint-config": "^2.1.0",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/test-helpers": "^1.5.4",
"typescript": "^5.3.3"
}
}