forked from halninekilo/SnowFS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "snowfs",
"version": "0.9.1",
"description": "Asynchronous version tracker library for binary files",
"main": "main.js",
"scripts": {
"tsc": "tsc",
"build": "pkg dist/out-tsc/main.js",
"snowfs": "node -r ts-node/register main.ts",
"benchmark": "cross-env NODE_ENV=benchmark node --require ts-node/register benchmark/snowfs-vs-git.ts",
"ava": "nyc --reporter=html --reporter=lcov --reporter=text ava --timeout 900s --verbose --serial --fail-fast --color true",
"docs": "typedoc --out docs src --theme ./node_modules/typedoc-neo-theme/bin/default"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"nodeArguments": [
"--napi-modules",
"--experimental-modules"
],
"files": [
"test/1.sys.test.ts",
"test/2.repo.init.ts",
"test/3.repo.open.ts",
"test/4.repo.status.ts",
"test/5.repo.commit.ts",
"test/6.repo.checkout.ts",
"test/7.ignore.ts",
"test/8.iocontext.ts",
"test/10.cli.ts"
]
},
"keywords": [],
"author": "Snowtrack Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/snowtrack/snowfs.git"
},
"engines": {
"node": ">=12.10.0"
},
"dependencies": {
"@supercharge/promise-pool": "^1.7.0",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"drivelist": "^9.2.4",
"es-aggregate-error": "^1.0.5",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20",
"micromatch": "^4.0.2",
"sort-paths": "^1.1.1",
"trash": "^7.1.1",
"ts-node": "^9.1.1"
},
"optionalDependencies": {
"winattr": "^3.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/lodash": "^4.14.167",
"@types/npm": "^2.0.31",
"@types/unzipper": "^0.10.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"ava": "^3.15.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"kleur": "^4.1.4",
"nyc": "^15.1.0",
"pkg": "^4.4.9",
"typedoc": "^0.20.20",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.1.3",
"unzipper": "^0.10.11"
}
}