-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "print-tree",
"version": "0.1.5",
"description": "prints any js data structure as a tree",
"main": "lib/index.js",
"repository": "alex-e-leon/print-tree",
"author": "alex leon <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"build": "babel index.js -d lib/",
"prepare": "npm run build",
"lint": "eslint index.js test",
"test:watch": "ava --watch",
"test": "flow && npm run lint && nyc ava",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@babel/register": "^7.4.4",
"ava": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-flow-comments": "^6.22.0",
"codecov": "^3.5.0",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-ava": "^4.2.2",
"eslint-plugin-flowtype": "^2.36.0",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.55.0",
"nyc": "^11.2.1",
"sinon": "^4.0.0"
},
"dependencies": {},
"keywords": [
"console",
"tree",
"print",
"pretty"
],
"ava": {
"require": [
"@babel/register"
]
}
}