-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
{
"name": "@getmetal/metal-sdk",
"version": "7.7.1",
"description": "Metal SDK",
"engineStrict": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prettier": "prettier -c .",
"format": "prettier -w .",
"prepare": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "rm -rf ./dist && tsc -p tsconfig.build.json && tsc -p tsconfig-cjs.build.json",
"test": "jest \"tests/.*\\.test\\.ts\" --coverage --collectCoverageFrom=src/**/*.ts"
},
"license": "Apache 2.0",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/getmetal/metal-sdk.git"
},
"homepage": "https://getmetal.io",
"files": [
"dist/"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"author": "Metal <[email protected]> (https://getmetal.io/)",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.1.1",
"@types/mime-types": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3",
"jsdom": "^22.1.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"mime-types": "^2.1.35"
},
"bugs": {
"url": "https://github.com/getmetal/metal-sdk/issues"
}
}