-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.36 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.36 KB
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
84
85
86
{
"name": "unionfs-extra",
"version": "0.0.1",
"description": "Utils for unionfs fs stacks",
"keywords": [
"require",
"resolve",
"path",
"module",
"from",
"like",
"path",
"cwd",
"current",
"working",
"directory",
"main",
"entry",
"point"
],
"author": "matt penrice <matthew.penrice@gmail.com> (https://github.com/elmpp)",
"homepage": "https://github.com/elmpp/unionfs-extra#readme",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/elmpp/unionfs-extra.git"
},
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tsc --noEmit && eslint . --ext .ts --ext .tsx",
"format": "eslint . --fix --ext .ts --ext .tsx",
"prepublishOnly": "yarn transpile",
"test": "jest --passWithNoTests",
"transpile": "tsc --module commonjs",
"transpile-watch": "yarn transpile --watch",
"contributors-generate": "all-contributors generate"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/elmpp/unionfs-extra/issues"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@commitlint/cli": "8.2.0 && 8.2.0",
"@commitlint/config-conventional": "8.2.0 && 8.2.0",
"@types/debug": "^4.1.5",
"@typescript-eslint/eslint-plugin": "2.13.0 && 2.13.0",
"@typescript-eslint/parser": "2.13.0 && 2.13.0",
"all-contributors-cli": "6.11.2 && 6.11.2",
"babel-eslint": "10.0.3 && 10.0.3",
"eslint": "6.8.0 && 6.8.0",
"eslint-config-prettier": "^6.10.0 && ^6.10.0",
"eslint-plugin-import": "^2.20.1 && ^2.20.1",
"eslint-plugin-jest": "^23.8.2 && ^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3 && ^6.2.3",
"eslint-plugin-prettier": "^3.1.2 && ^3.1.2",
"eslint-plugin-promise": "^4.2.1 && ^4.2.1",
"eslint-plugin-react": "^7.19.0 && ^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0 && ^2.5.0",
"eslint-plugin-tsdoc": "^0.2.3 && ^0.2.3",
"git-cz": "4.2.0 && 4.2.0",
"jest": "24.9.0 && 24.9.0",
"prettier": "1.19.1 && 1.19.1",
"ts-jest": "24.2.0 && 24.2.0",
"typescript": "3.8.3 && 3.8.3",
"unionfs": "^4.4.0"
},
"dependencies": {
"debug": "^4.1.1",
"unionfs": "^4.4.0",
"walk-sync": "2.0.2"
},
"peerDependencies": {
"unionfs": "^4.4.0"
},
"files": [
"dist"
]
}