-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "website-dependency-graph",
"description": "Command-line tool to generate dependency graph from static website files",
"version": "0.0.1",
"main": "dist/cli.js",
"license": "MIT",
"bin": {
"wdg": "./dist/cli.js"
},
"author": {
"name": "Rajeesh C V",
"email": "cvrajeesh+wdg@gmail.com",
"url": "https://www.rajeeshcv.com"
},
"engines": {
"node": ">=12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cvrajeesh/website-dependency-graph.git"
},
"keywords": [
"website",
"dependency",
"graph",
"static",
"asset",
"wdg"
],
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/types": "7.10.5",
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@types/jest": "26.0.7",
"@types/mime-types": "2.1.0",
"@types/mock-fs": "4.10.0",
"@types/postcss-safe-parser": "4.0.0",
"@typescript-eslint/eslint-plugin": "3.7.0",
"@typescript-eslint/parser": "3.7.0",
"eslint": "7.5.0",
"eslint-plugin-import": "2.22.0",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.11",
"mock-fs": "4.12.0",
"prettier": "2.0.5",
"semantic-release": "17.1.1",
"strict-event-emitter-types": "2.0.0",
"ts-jest": "26.1.3",
"ts-node": "8.10.2",
"typescript": "3.9.7"
},
"dependencies": {
"@babel/parser": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/traverse": "7.10.5",
"@types/node": "12.12.6",
"fast-glob": "3.2.4",
"mime-types": "2.1.27",
"open": "7.1.0",
"ora": "4.0.5",
"postcss": "7.0.32",
"postcss-safe-parser": "4.0.2",
"postcss-values-parser": "3.2.1",
"posthtml": "0.13.1",
"posthtml-parser": "0.4.2",
"posthtml-render": "1.2.2",
"url": "0.11.0",
"yargs": "15.4.1"
},
"scripts": {
"test": "jest",
"build": "tsc",
"release": "semantic-release",
"cli": "ts-node --files ./src/cli.ts"
},
"release": {
"branches": [
"master"
]
}
}