-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.85 KB
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
{
"name": "autocheck",
"description": "Automatically check for patterns against a set of files and executables, and generate a neat report to quickly examine the results.",
"main": "dist/main.js",
"version": "0.4.2",
"author": {
"name": "Josephus Paye II"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JosephusPaye/autocheck.git"
},
"bin": {
"autocheck": "./dist/main.js"
},
"scripts": {
"prepublishOnly": "cd viewer && npm run build && cd ..",
"test": "uvu -r esm tests/",
"build": "tsc && cp ./src/report/index-template.html ./dist/report/index-template.html",
"format": "prettier --write \"src/**/*.{ts,html}\" \"tests/**/*.{js,html}\" \"*.{js,json,md}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,html}\" \"tests/**/*.{js,html}\" \"*.{js,json,md}\""
},
"engineStrict": true,
"engines": {
"node": ">=12.0.0"
},
"files": [
"viewer/dist/index.html",
"viewer/dist/css/*.css",
"viewer/dist/js/*.js",
"dist/autocheck.js",
"dist/main.js",
"dist/checks/*.js",
"dist/report/*.js",
"dist/report/*.html",
"dist/util/*.js",
"LICENCE",
"package.json",
"README.md",
"yarn.lock"
],
"dependencies": {
"copy-dir": "^1.2.0",
"execa": "^4.0.0",
"filenamify": "^4.2.0",
"kleur": "^4.1.4",
"picomatch": "^2.2.2",
"rimraf": "^3.0.2",
"sade": "^1.7.4",
"upath": "^1.2.0"
},
"devDependencies": {
"@types/node": "^14.14.39",
"@types/picomatch": "^2.2.2",
"@types/rimraf": "^3.0.0",
"@types/sade": "^1.7.2",
"@types/yargs-parser": "^20.2.0",
"esm": "^3.2.25",
"prettier": "^2.0.4",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "es5"
}
}