-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "shaurl",
"version": "1.1.0",
"description": "Generate sha256 for url",
"author": "José",
"keywords": [
"sha",
"url"
],
"license": "MIT",
"main": "dist/index.js",
"bin": {
"shaurl": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"test": "npm run build; jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j5pu/shaurl.git"
},
"bugs": {
"url": "https://github.com/j5pu/shaurl/issues"
},
"homepage": "https://github.com/j5pu/shaurl#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/yargs": "^17.0.8",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"yargs": "^17.3.1"
},
"dependencies": {
"axios": "^0.24.0",
"ts-yargs": "^0.1.8"
}
}