-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "pickitt",
"version": "3.2.0",
"description": "When you need a computer to just pick it, reach for Pickitt!",
"main": "lib/index.js",
"files": [
"LICENSE",
"package.json",
"README.md",
"lib"
],
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src/**/*",
"build": "npm run clean && npm run lint && tsc --declaration",
"test": "jest",
"coverage": "jest --coverage",
"build-docs": "rimraf docs && typedoc --out docs src --mode modules --includeDeclarations --excludeExternals --name 'Pickitt' --includeVersion"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexlee-dev/pickitt.git"
},
"keywords": [
"random",
"list",
"picker",
"pick",
"choose",
"chooser",
"utility",
"utility-function",
"sample"
],
"author": {
"name": "Alex Lee",
"email": "alex@alexlee.dev",
"url": "https://www.alexlee.dev/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alexlee-dev/pickitt/issues"
},
"homepage": "https://pickitt.netlify.com/",
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/documentation/"
]
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.1.1",
"clear": "^0.1.0",
"figlet": "^1.3.0"
}
}