-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
103 lines (103 loc) · 3.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "crypto-symbol",
"version": "3.6.0",
"description": "Provide easy conversion between crypto symbol and name",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"targets": {
"types": false,
"main": {
"optimize": true
}
},
"scripts": {
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm i && npx husky install",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"pretty": "pretty-quick --stage",
"test": "rm -rf coverage && jest --forceExit",
"parcel": "rm -rf dist && tsc --emitDeclarationOnly true && parcel build",
"build": "rm -rf dist && tsc",
"link": "npm link && npm link crypto-symbol",
"generate": "ts-node --project tsconfig.doc.json scripts/generate.ts",
"update": "git pull && npm run reinstall && npm run generate && npm run pretty && git add . && git commit --no-verify -m \"update list\" && git push",
"cron": "ts-node --project tsconfig.doc.json scripts/cron.ts",
"jest": "jest src/index.test.ts",
"commit": "git commit --no-verify",
"dev": "---------------------dev------------------------",
"d-link": "npm run build && npm run link",
"d-test": "tsc && npm test",
"d-b-test": "npm run d-link && npm run b-tsc && npm run b-uninstall && npm run b-test",
"d-p-test": "npm run p-reinstall && npm run p-test",
"d-pub": "npm run build && npm publish --tag beta",
"built": "-------------test built file-----------------------",
"b-tsc": "tsc -p tsconfig.doc.json",
"b-test": "jest --forceExit -c=jest.config.doc.js",
"b-uninstall": "npm --prefix codeForDoc run uninstall",
"published": "-------------test published file-----------------------",
"p-reinstall": "npm --prefix codeForDoc run reinstall && ts-node --project tsconfig.doc.json scripts/installLatest.ts",
"p-test": "npm --prefix codeForDoc test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylim88/Crypto-Symbol.git"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml}": [
"eslint --fix",
"npm run pretty"
]
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tylim88/Crypto-Symbol/issues"
},
"homepage": "https://github.com/tylim88/Crypto-Symbol#readme",
"keywords": [
"crypto",
"name",
"symbol",
"Bitcoin",
"Ethereum",
"cryptoCurrency",
"currency",
"blockchain",
"converter",
"ticker"
],
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@types/cron": "^1.7.3",
"@types/jest": "^27.4.1",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"axios": "^0.26.1",
"cron": "^1.8.2",
"deep-object-diff": "^1.1.7",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-yml": "^1.4.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"parcel": "^2.4.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"semver-increment": "^1.0.1",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"zod": "^3.14.4"
}
}