-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 843 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
{
"name": "inspect-with-kind",
"version": "1.0.5",
"description": "`util.inspect` with additional type information",
"repository": "shinnn/inspect-with-kind",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "nyc --reporter=html --reporter=text node test.js"
},
"files": [
"index.js"
],
"keywords": [
"inspect",
"format",
"beautify",
"clarify",
"stringify",
"type",
"kind",
"append",
"additional",
"info",
"check"
],
"dependencies": {
"kind-of": "^6.0.2"
},
"devDependencies": {
"@shinnn/eslint-config-node": "^6.0.0",
"babel-eslint": "^9.0.0",
"eslint": "^5.4.0",
"nyc": "^13.0.1",
"tape": "^4.9.1",
"zen-observable": "^0.8.9"
},
"eslintConfig": {
"extends": "@shinnn/node",
"parser": "babel-eslint"
}
}