-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1017 Bytes
/
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
{
"name": "@lentix/fs",
"version": "0.0.0",
"description": "File System",
"private": true,
"main": "./dist/index.js",
"files": [
"*.md",
"LICENSE",
"src/*"
],
"scripts": {
"start": "tsc --watch",
"prepare": "tsc",
"build": "pnpm run build",
"prepublishOnly": "pnpm run build",
"coverage": "jest --coverage",
"lint": "tsc && prettier --list-different --write src tests",
"test": "pnpm run jest"
},
"keywords": [],
"author": "Lentix",
"license": "MIT",
"dependencies": {
"webpack": "^5.73.0"
},
"devDependencies": {
"@types/filesystem":"^0.0.32",
"file": "0.2.2",
"file-loader": "6.2.0",
"file-saver": "2.0.5",
"filesize": "10.0.6",
"file-type": "18.2.1",
"typescript": "4.9.5"
},
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"semi": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}