forked from szwacz/fs-jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "fs-jetpack",
"description": "Better file system API",
"version": "4.0.1",
"author": "Jakub Szwacz <jakub@szwacz.com>",
"dependencies": {
"minimatch": "^3.0.2",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"fs-extra": "^5.0.0",
"istanbul": "^0.4.5",
"lint-staged": "^7.2.0",
"mocha": "^7.1.2",
"pre-commit": "^1.1.2",
"prettier": "1.13.5",
"pretty-bytes": "^5.1.0",
"release-assist": "^2.0.0",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"scripts": {
"test": "mocha -r ts-node/register \"spec/**/*.spec.ts\"",
"test-with-coverage": "istanbul cover _mocha -- -r ts-node/register 'spec/**/*.spec.ts'",
"lint-staged": "lint-staged",
"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"
],
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged",
"test"
]
}