forked from alephium/token-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "@alephium/token-list",
"version": "0.0.19",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"build": "rm -rf dist && npx tsc --build .",
"jest": "jest --useStderr --silent=false --verbose=true --config jestconfig.json",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"test": "npm run build && npm run jest",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"prepublishOnly": "npm run build"
},
"browserslist": {},
"devDependencies": {
"@alephium/web3": "^0.14.0",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"cross-fetch": "^3.1.8"
}
}