This repository was archived by the owner on Mar 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
{
"name": "@socketsecurity/config",
"version": "3.0.1",
"description": "Config parser for Socket.dev",
"homepage": "http://github.com/SocketDev/socket-config-js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git://github.com/SocketDev/socket-config-js.git"
},
"keywords": [],
"author": {
"name": "Socket Inc",
"email": "eng@socket.dev",
"url": "https://socket.dev"
},
"license": "MIT",
"engines": {
"node": "18.20.7 || ^20.18.3 || >=22.14.0"
},
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map",
"schema.json",
"lib/*"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build:2-schema-file": "echo \"console.log(JSON.stringify(require('.').socketYmlSchema, undefined, 2))\" | node > schema.json",
"build": "run-s build:*",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95 --ignore-files 'test/*'",
"check": "run-p -c --aggregate-output check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean": "run-p clean:*",
"prepublishOnly": "git push --follow-tags && gh-release -y && run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s check test:*",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.0",
"@types/node": "^22.15.19",
"c8": "^10.1.3",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"mocha": "^11.4.0",
"neostandard": "^0.12.0",
"npm-run-all2": "^8.0.2",
"type-coverage": "^2.24.1",
"typescript": "~5.8.3",
"auto-changelog": "^2.4.0",
"gh-release": "^7.0.2"
},
"dependencies": {
"ajv": "^8.12.0",
"pony-cause": "^2.1.8",
"yaml": "^2.2.1"
}
}