-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@oblivion-libs/api",
"description": "Node client and models for Oblivion API",
"repository": "https://github.com/DeadGamesInc/oblivion-api-client.git",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"author": "Dead Games Inc.",
"scripts": {
"analyze": "source-map-explorer 'dist/*.js'",
"build": "tsc",
"prepublishOnly": "tsc",
"lint": "eslint 'src/**/*.{js,ts}'",
"format:check": "prettier --check --loglevel error 'src/**/*.{js,ts}'",
"format:write": "prettier --write 'src/**/*.{js,ts}'",
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"roots": [
"src"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@pancakeswap-libs/eslint-config-pancake": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/jest-json-schema": "^6.1.0",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"eslint": "^8.13.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-json-schema": "^6.1.0",
"prettier": "^2.6.2",
"source-map-explorer": "^2.5.2",
"ts-jest": "^27.1.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"typescript-json-schema": "^0.53.0"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"node-fetch": "^2.6.1"
}
}