-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1003 Bytes
/
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
{
"name": "tln",
"version": "1.0.3",
"description": "Generate available three-letter npm package names.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": "dist/cli/launch.js",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bvpav/tln.git"
},
"keywords": [
"three-letter",
"npm",
"package",
"name"
],
"author": "bvpav",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/bvpav/tln/issues"
},
"homepage": "https://github.com/bvpav/tln#readme",
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^27.5.1",
"@types/minimist": "^1.2.2",
"jest": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"minimist": "^1.2.6"
}
}