-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "@rustraf/core",
"version": "0.1.8",
"description": "Super-fast alternative for rimraf",
"repository": {
"type": "git",
"url": "git://github.com/stijnvanhulle/rustraf.git"
},
"license": "MIT",
"author": "Stijn Van Hulle",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"rustraf": "./bin/cli.js"
},
"files": [
"bin",
"index.js",
"index.d.ts",
"CHANGELOG.md"
],
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"pre-commit": "echo 'pre-commit not configured'",
"pre-push": "",
"prepublishOnly": "napi prepublish -t npm",
"release": "standard-version",
"postrelease": "napi version",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"test": "ava",
"typecheck": "tsc --noEmit",
"version": "napi version",
"upgrade": "ncu -u",
"upgrade:rustraf": "ncu -u '/@rustraf/'",
"upgrade:local": "ncu --interactive --doctor"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@napi-rs/cli": "^2.12.0",
"ava": "~5.0.1",
"npm-check-updates": "^16.3.16",
"standard-version": "^9.5.0"
},
"optionalDependencies": {
"@rustraf/core-win32-x64-msvc": "0.1.8",
"@rustraf/core-darwin-x64": "0.1.8",
"@rustraf/core-linux-x64-gnu": "0.1.8",
"@rustraf/core-darwin-arm64": "0.1.8"
},
"engines": {
"node": ">=14.18"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"napi": {
"name": "core",
"triples": {
"additional": [
"aarch64-apple-darwin"
]
}
},
"bugs": {
"url": "https://github.com/stijnvanhulle/rustraf/issues"
},
"homepage": "https://github.com/stijnvanhulle/rustraf#readme",
"dependencies": {
"yargs": "^17.6.2"
}
}