-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.95 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
58
59
60
61
62
63
{
"name": "onoma",
"version": "0.1.1",
"description": "a library for making web3 addresses more human-readable",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.config.ts",
"build": "tsc && tsc-alias",
"dev": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"check": "yarn run lint && yarn run format && yarn run test",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-metagame/onoma.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"Ethereum",
"ETH",
"EVM",
"Polygon",
"Blockchain",
"Crypto",
"Web3"
],
"author": "Brenner Spear",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-metagame/onoma/issues"
},
"homepage": "https://github.com/the-metagame/onoma#readme",
"dependencies": {
"@faker-js/faker": "^6.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"concurrently": "^7.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsdoc": "^38.0.6",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.5",
"typescript": "^4.6.3"
}
}