-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "daggraph",
"version": "0.3.3",
"description": "A dagger dependency graph generator",
"author": {
"name": "Davide Cirillo",
"email": "[email protected]",
"url": "https://github.com/dvdciri"
},
"scripts": {
"clean": "rimraf bin",
"start": "npm run build && node bin/cli.js",
"build": "babel src --out-dir bin --copy-files",
"pretest": "npm run build",
"test": "ava --timeout=2m",
"prepublish": "npm run clean && npm run test && npm run build"
},
"bin": {
"daggraph": "bin/cli.js"
},
"main": "bin/cli.js",
"keywords": [],
"dependencies": {
"@babel/polyfill": "7.0.0-beta.49",
"chalk": "^2.3.0",
"filesniffer": "^1.0.3",
"inquirer": "^4.0.2",
"meow": "^3.7.0",
"node-time-log": "^1.0.3",
"open": "0.0.5",
"opn": "^5.1.0",
"string-search": "^1.2.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.49",
"@babel/core": "7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.49",
"@babel/preset-env": "7.0.0-beta.49",
"@babel/register": "7.0.0-beta.49",
"ava": "^0.25.0",
"eslint": "^4.14.0",
"rimraf": "^2.6.2",
"xo": "^0.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dvdciri/daggraph.git"
},
"bugs": {
"url": "https://github.com/dvdciri/daggraph/issues"
},
"homepage": "https://github.com/dvdciri/daggraph",
"license": "MIT",
"ava": {
"require": [
"@babel/register"
]
}
}