-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
83 lines (83 loc) · 2.28 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
{
"name": "check-disk-space",
"version": "3.4.0",
"description": "Light multi-platform disk space checker without third party for Node.js",
"files": [
"dist",
"README.md"
],
"main": "./dist/check-disk-space.cjs",
"module": "./dist/check-disk-space.mjs",
"types": "./dist/check-disk-space.d.ts",
"exports": {
"import": "./dist/check-disk-space.mjs",
"require": "./dist/check-disk-space.cjs",
"types": "./dist/check-disk-space.d.ts"
},
"scripts": {
"build:lib": "rollup --config",
"build:dts": "rollup --config rollup.dts.config.mjs",
"build": "npm-run-all build:lib build:dts",
"lint": "eslint . --cache",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"test": "npm-run-all test:coverage lint typecheck",
"test:unit": "NODE_ENV=test TS_NODE_PROJECT='tsconfig.test.json' ava",
"test:coverage": "nyc --reporter=lcov --reporter=text npm run test:unit --silent"
},
"ava": {
"files": [
"test/**",
"!test/__helpers__/**"
],
"extensions": [
"ts"
],
"require": [
"tsconfig-paths/register",
"ts-node/register",
"source-map-support/register"
]
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@alex-d/eslint-config": "2.2.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@rollup/plugin-typescript": "11.1.1",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"ava": "5.2.0",
"eslint": "8.41.0",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-simple-import-sort": "10.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rollup": "3.22.0",
"rollup-plugin-dts": "5.3.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tslib": "2.5.2",
"typescript": "5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alex-D/check-disk-space.git"
},
"keywords": [
"disk",
"space",
"hdd",
"free"
],
"author": "Alex-D <[email protected]> (https://alex-d.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alex-D/check-disk-space/issues"
},
"homepage": "https://github.com/Alex-D/check-disk-space#readme"
}