-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.3 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
{
"name": "srrup",
"version": "3.0.0",
"description": "Upload .srr files to srrdb.com",
"homepage": "https://github.com/peps1/srrup#readme",
"license": "MIT",
"author": {
"name": "pepsi"
},
"main": "./src/index.ts",
"bin": {
"srrup": "./build/index.js"
},
"files": [
"./build/index.js"
],
"scripts": {
"fmt": "deno fmt src/",
"update-version": "genversion --es6 --semi src/version.ts",
"test": "deno test --allow-env --allow-read --allow-sys --coverage --trace-leaks src/",
"compile:windows": "deno compile -A --target x86_64-pc-windows-msvc -o bin/windows-x86_64/srrup src/index.ts",
"compile:linux": "deno compile -A --target x86_64-unknown-linux-gnu -o bin/linux-x86_64/srrup src/index.ts; deno compile -A --target aarch64-unknown-linux-gnu -o bin/linux-aarch64/srrup src/index.ts",
"compile:macos": "deno compile -A --target x86_64-apple-darwin -o bin/macos-x86_64/srrup src/index.ts; deno compile -A --target aarch64-apple-darwin -o bin/macos-aarch64/srrup src/index.ts",
"lint": "npx eslint ./src ; deno lint ./src",
"lint:fix": "npm run fmt ; npx eslint ./src --fix ; deno lint ./src --fix"
},
"bugs": {
"url": "https://github.com/peps1/srrup/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/peps1/srrup"
},
"devDependencies": {
"@inquirer/prompts": "^7.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^5.0.0",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.7.7",
"@types/qs": "^6.9.16",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vercel/ncc": "^0.38.2",
"axios": "^1.7.7",
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"form-data": "^4.0.1",
"genversion": "^3.2.0",
"minimist": "^1.2.8",
"mocha": "^10.7.3",
"mock-fs": "^5.4.0",
"nyc": "^17.1.0",
"qs": "^6.13.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"winston": "^3.15.0",
"winston-daily-rotate-file": "^5.0.0"
}
}