-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
{
"name": "tcpcv",
"version": "2.1.1",
"author": "Zachary Flower <[email protected]>",
"description": "TCPCV is a retro-style, text-based server for hosting your resume",
"keywords": [
"cli-app",
"cli",
"resume",
"cv"
],
"contributors": [
{
"name": "Zachary Flower",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/zachflower/tcpcv.git"
},
"bugs": {
"url": "https://github.com/zachflower/tcpcv/issues"
},
"homepage": "https://github.com/zachflower/tcpcv#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"test": "xo",
"build": "tsc",
"build:check": "tsc --noEmit",
"watch": "tsc -w"
},
"bin": {
"tcpcv": "bin/tcpcv"
},
"dependencies": {
"figlet": "1.1.1",
"meow": "^7.0.1",
"signale": "^1.4.0",
"sprintf-js": "1.0.2",
"word-wrap": "1.0.3"
},
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/node": "^14.17.5",
"@types/signale": "^1.4.2",
"@types/sprintf-js": "^1.1.2",
"@types/update-notifier": "^4.1.1",
"@types/word-wrap": "^1.2.1",
"typescript": "^3.9.10",
"xo": "^0.41.0"
},
"xo": {
"space": 2,
"rules": {
"unicorn/prefer-node-protocol": "off",
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/object-curly-spacing": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off"
}
}
}