-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.13 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
{
"name": "cfpathcheck",
"type": "module",
"description": "Check CFML files for correct paths in cfinclude/cfimport tags",
"version": "11.0.0",
"homepage": "https://github.com/timbeadle/cfpathcheck",
"author": {
"name": "Tim Beadle",
"url": "https://github.com/timbeadle"
},
"repository": {
"type": "git",
"url": "git://github.com/timbeadle/cfpathcheck.git"
},
"bugs": {
"url": "https://github.com/timbeadle/cfpathcheck/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/timbeadle/cfpathcheck/blob/main/LICENSE-MIT"
}
],
"keywords": [
"cli",
"command line",
"cfml",
"static analysis"
],
"preferGlobal": true,
"bin": "./bin/cli.js",
"main": "./lib/cfpathcheck.js",
"types": "./dist/cfpathcheck.d.ts",
"engines": {
"node": ">= 20.18.1"
},
"scripts": {
"build:types": "rimraf ./dist/* && tsc",
"test": "run-p test:snyk test:lint test:unit test:engines",
"test:ci": "run-p test:lint test:unit test:engines",
"test:engines": "ls-engines",
"test:coverage": "nyc --reporter=lcov npm run test:unit",
"test:lint": "xo {bin,lib,test}/*.js",
"test:snyk": "snyk test --dev",
"test:unit": "mocha test/*.spec.js",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@snyk/protect": "^1.1294.3",
"chalk": "^5.4.1",
"checkstyle-formatter": "^1.1.0",
"crlf": "^1.1.1",
"deep-equal": "^2.2.3",
"glob": "^11.0.0",
"log-symbols": "^7.0.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@types/checkstyle-formatter": "1.0.2",
"@types/deep-equal": "1.0.4",
"@types/glob": "8.1.0",
"@types/minimist": "1.2.5",
"@types/mocha": "10.0.10",
"@types/node": "^22.10.2",
"chai": "5.1.2",
"globals": "^15.14.0",
"ls-engines": "0.9.3",
"mocha": "11.0.1",
"npm-run-all2": "7.0.2",
"nyc": "17.1.0",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"xo": "^0.60.0"
},
"snyk": true,
"volta": {
"node": "20.18.1",
"npm": "11.0.0"
}
}