UNPKG

1.37 kBJSONView Raw
1{
2 "name": "ink-task-list",
3 "version": "1.0.1",
4 "description": "Render a Task list in Ink",
5 "keywords": [
6 "ink",
7 "components",
8 "task list",
9 "task"
10 ],
11 "license": "MIT",
12 "repository": "privatenumber/ink-task-list",
13 "funding": "https://github.com/privatenumber/ink-task-list?sponsor=1",
14 "author": {
15 "name": "Hiroki Osame",
16 "email": "hiroki.osame@gmail.com"
17 },
18 "files": [
19 "bin",
20 "dist"
21 ],
22 "main": "dist/index.js",
23 "scripts": {
24 "lint": "eslint .",
25 "build": "tsc",
26 "test": "CI=true jest tests/*.tsx",
27 "visual-test": "esno tests/VisualTest.tsx"
28 },
29 "husky": {
30 "hooks": {
31 "pre-commit": "npm run build && lint-staged && npm test"
32 }
33 },
34 "lint-staged": {
35 "*.{js,ts}": "eslint"
36 },
37 "peerDependencies": {
38 "ink": ">=3.0.0",
39 "react": ">=16.8.0"
40 },
41 "dependencies": {
42 "cli-spinners": "^2.6.0",
43 "figures": "^3.2.0",
44 "ink-spinner": "^4.0.1",
45 "prop-types": "^15.7.2"
46 },
47 "devDependencies": {
48 "@pvtnbr/eslint-config-react": "^0.1.15",
49 "@types/jest": "^26.0.23",
50 "@types/react": "^17.0.4",
51 "es-jest": "^1.2.0",
52 "eslint": "^7.24.0",
53 "esno": "^0.5.0",
54 "husky": "^4.3.8",
55 "ink": "^3.0.8",
56 "ink-testing-library": "^2.1.0",
57 "jest": "^26.6.3",
58 "lint-staged": "^10.5.4",
59 "prettier": "^2.2.1",
60 "react": "^17.0.2",
61 "typescript": "^4.2.4"
62 },
63 "eslintConfig": {
64 "extends": "@pvtnbr/eslint-config-react"
65 }
66}