-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.54 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
{
"name": "transaction-file",
"version": "1.0.0",
"description": "A zero-dependency, transactional filesystem manager with atomic writes and persistent recovery.",
"keywords": [
"atomic-write",
"filesystem",
"transaction",
"rollback",
"data-integrity",
"crash-recovery",
"atomic",
"typescript"
],
"license": "MIT",
"author": "SinisterDeveloper",
"homepage": "https://github.com/SinisterDeveloper/transaction-file#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SinisterDeveloper/transaction-file.git"
},
"bugs": {
"url": "https://github.com/SinisterDeveloper/transaction-file/issues"
},
"main": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"prepublishOnly": "npm run build",
"test": "mocha -r ts-node/register/transpile-only \"test/**/*.test.ts\""
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"typescript": "^5.4.5",
"ts-node": "^10.9.1",
"mocha": "^10.2.0",
"chai": "^4.3.8",
"sinon": "^21.0.1",
"proxyquire": "^2.1.3",
"@types/node": "^20.11.0",
"@types/mocha": "^10.0.1",
"@types/chai": "^4.3.3",
"@types/sinon": "^21.0.0",
"@types/proxyquire": "^1.3.21",
"prettier": "^3.8.1"
}
}