-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"author": {
"name": "Robert Kieffer",
"url": "http://github.com/broofa",
"email": "[email protected]"
},
"name": "npmgraph-cli",
"version": "0.2.1",
"type": "module",
"description": "Command-line interface for npmgraph",
"main": "index.js",
"files": [
"dist/*",
"bin/*"
],
"bin": {
"npmgraph": "bin/cli.js"
},
"license": "MIT",
"devDependencies": {
"@types/node": "20.5.9",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"prettier": "3.0.3",
"standard-version": "9.5.0",
"typescript": "5.2.2"
},
"scripts": {
"build": "npm run build:clean && tsc",
"build:clean": "rm -fr dist",
"build:watch": "npm run build:clean && tsc --watch",
"lint": "prettier -c .",
"lint:fix": "prettier -w .",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "echo \"no tests at this time\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/npmgraph/npmgraph-cli.git"
},
"keywords": [
"npmgraph",
"cli"
],
"bugs": {
"url": "https://github.com/npmgraph/npmgraph-cli/issues"
},
"homepage": "https://github.com/npmgraph/npmgraph-cli#readme",
"funding": [
"https://github.com/sponsors/broofa"
],
"dependencies": {
"commander": "11.1.0",
"open": "9.1.0"
}
}