-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
{
"name": "mitchellsimoens",
"version": "1.0.2",
"description": "Business card for Mitchell Simoens",
"main": "index.js",
"bin": {
"mitchellsimoens": "./bin/index.js"
},
"files": [
"assets",
"bin",
"lib"
],
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit",
"lint": "eslint 'bin/**/*.js' 'src/**/*.ts'",
"lint-staged": "lint-staged",
"start": "node -r ts-node/register src/index.ts",
"bump": "npm version patch",
"postbump": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mitchellsimoens/mitchellsimoens-card.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mitch",
"mitchell",
"simoens",
"mitchellsimoens",
"business card",
"e-card",
"card"
],
"author": "Mitchell Simoens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mitchellsimoens/mitchellsimoens-card/issues"
},
"homepage": "https://github.com/mitchellsimoens/mitchellsimoens-card#readme",
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
},
"lint-staged": {
"packages/**/bin/**/*.{js,jsx,ts,tsx},packages/**/src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"biz-carderator": "1.0.1",
"boxen": "4.1.0",
"colorette": "1.1.0",
"read-pkg": "5.2.0"
},
"devDependencies": {
"@types/node": "12.6.4",
"@types/read-pkg": "4.0.0",
"@typescript-eslint/eslint-plugin": "1.12.0",
"@typescript-eslint/parser": "1.12.0",
"eslint": "6.0.1",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "6.0.0",
"eslint-import-resolver-lerna": "1.1.0",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jest": "22.9.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.2",
"husky": "3.0.0",
"lint-staged": "9.2.0",
"prettier": "1.18.2",
"ts-node": "8.3.0",
"typescript": "3.5.3"
}
}