-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "node-peco",
"version": "0.1.6",
"description": "Peco (Simplistic interactive filtering tool) NodeJS Binding",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "minidonut/node-peco",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test ts-node ./node_modules/.bin/jest",
"lint": "eslint . --ext .js,.ts",
"start": "ts-node src/index.ts",
"start:debug": "node --require ts-node/register --inspect-brk src/index.ts"
},
"author": {
"name": "Karl Saehun Chung",
"email": "nycom13@gmail.com"
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"prettier": "^2.1.0",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/tests/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"keywords": [
"cli",
"command-line",
"command-line-tool",
"fuzzy",
"fuzzy-search",
"prompt",
"interactive",
"peco"
]
}