-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
{
"name": "node-fs-storage",
"version": "0.1.1",
"type": "module",
"repository": "git+https://github.com/rx-ts/node-fs-storage.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"engines": {
"node": ">=v12.22.12"
},
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "lib",
"files": [
"lib",
"!*.tsbuildinfo"
],
"keywords": [
"file-system",
"fs-storage",
"storage"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -p tsconfig.lib.json",
"clean": "rimraf lib *.tsbuildinfo",
"jest": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"test": "yarn jest",
"typecov": "type-coverage"
},
"dependencies": {
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@1stg/lib-config": "^4.1.2",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@jest/types": "^27.2.5",
"@types/jest": "^27.0.2",
"@types/mkdirp": "^1.0.2",
"@types/rimraf": "^3.0.2",
"postcss": "^8.4.14",
"ts-jest": "^27.1.5",
"type-coverage": "^2.18.3",
"typescript": "^4.4.3"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}