-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "@paritytech/license-scanner",
"version": "0.0.8",
"author": "Parity <[email protected]> (https://parity.io)",
"type": "module",
"engines": {
"node": "^22"
},
"license": "Apache-2.0",
"main": "./build/license-scanner/main.js",
"bin": "./build/license-scanner/main.js",
"files": [
"build",
"rust-crate-scanner"
],
"licenses": [
{
"type": "Apache-2.0",
"url": "http://opensource.org/licenses/Apache-2.0"
}
],
"imports": {
"#license-scanner/*": "./license-scanner/*.js"
},
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"@types/node": "^22.13.4",
"@types/tar": "^4.0.5",
"@types/tmp": "^0.2.1",
"earl": "^1.3.0",
"typescript": "^5.7.3"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf build && mkdir -p build && cp -r licenses build/ && tsc && cp package.json build/",
"start": "node ./build/license-scanner/main.js",
"prettier": "npx prettier '{*,**/*}.json'",
"eslint": "npx eslint '{*,**/*}.{js,ts}'",
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"lint:eslint": "yarn run eslint",
"lint:prettier": "yarn run prettier --check",
"fix:eslint": "yarn run eslint --fix",
"fix:prettier": "yarn run prettier --write",
"fix": "yarn run fix:eslint && yarn run fix:prettier",
"test": "yarn build && node --enable-source-maps --test build/tests/*.test.js",
"debug": "NODE_OPTIONS='--inspect-brk' yarn run start"
},
"dependencies": {
"@commander-js/extra-typings": "^10.0.2",
"async-mutex": "^0.3.2",
"commander": "^10.0.0",
"elfinfo": "^0.4.0-beta",
"p-queue": "^7.1.0",
"tar": "^6.2.1",
"tmp": "^0.2.1"
},
"packageManager": "[email protected]"
}