-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 990 Bytes
/
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": "sum-up",
"version": "3.0.1",
"description": "Summarize package information",
"repository": "shinnn/sum-up",
"homepage": "https://github.com/shinnn/sum-up",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"pretest": "eslint --fix --format=codeframe index.js test.js",
"test-no-coverage": "node test.js --color && node test.js --no-color",
"test": "nyc --reporter=html --reporter=text npm run-script test-no-coverage --silent"
},
"license": "ISC",
"files": [
"index.js"
],
"keywords": [
"summerize",
"summary",
"brief",
"outline",
"info",
"information",
"description",
"data",
"package",
"color",
"colour",
"cli-friendly"
],
"dependencies": {
"chalk": "^2.3.0",
"inspect-with-kind": "^1.0.3"
},
"devDependencies": {
"@shinnn/eslint-config-node": "^5.0.0",
"ansi-styles": "^3.2.0",
"eslint": "^4.13.0",
"nyc": "^11.4.0",
"tape": "^4.8.0"
},
"eslintConfig": {
"extends": "@shinnn/node"
}
}