-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "list-it",
"version": "1.3.13",
"description": "Text table formatter.",
"repository": {
"type": "git",
"url": "https://github.com/takamin/list-it"
},
"homepage": "http://takamints.hatenablog.jp/entry/npm-list-it-preformatted-text-table-generator",
"bin": {
"listit": "bin/listit.js"
},
"main": "./index.js",
"scripts": {
"coverage": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"lint-watch": "npx eslint-watch --watch",
"mocha-watch": "mocha -- --watch",
"test": "eslint . && nyc mocha"
},
"keywords": [
"cli",
"text",
"table"
],
"author": "Koji Takami",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.40.0",
"eslint-plugin-jsdoc": "^43.2.0",
"eslint-watch": "^8.0.0",
"mocha": "^10.7.3",
"nyc": "^15.1.0"
},
"dependencies": {
"ansi-escape-sequences": "^6.2.2",
"debug": "^4.3.7",
"eastasianwidth": "^0.2.0",
"hash-arg": "^1.0.9",
"node-getopt": "github:takamin/node-getopt"
}
}