-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "fs-jetpack",
"description": "Better file system API",
"version": "5.1.0",
"author": "Jakub Szwacz <jakub@szwacz.com>",
"dependencies": {
"minimatch": "^5.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"chai": "^4.3.6",
"fs-extra": "^5.0.0",
"istanbul": "^0.4.5",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"pretty-bytes": "^5.1.0",
"release-assist": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"scripts": {
"test": "mocha -r ts-node/register \"spec/**/*.spec.ts\"",
"coverage": "nyc --reporter=lcov npm run test",
"prettier": "prettier --write \"./**/*.{js,ts}\"",
"release-start": "release-assist --start",
"release-finish": "release-assist --finish"
},
"main": "main.js",
"files": [
"lib",
"index.d.ts",
"types.d.ts"
],
"types": "index.d.ts",
"homepage": "https://github.com/szwacz/fs-jetpack",
"repository": {
"type": "git",
"url": "https://github.com/szwacz/fs-jetpack.git"
},
"license": "MIT",
"keywords": [
"fs",
"file system"
]
}