-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.31 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
{
"name": "rippledb",
"version": "1.0.0",
"main": "build/port/node",
"repository": "https://github.com/heineiuo/rippledb",
"author": "heineiuo <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"build:fixture": "babel fixtures -d fixtures --extensions \".ts\"",
"build:bench": "babel benchmarks -d benchmarks --extensions \".ts\"",
"build:scripts": "babel scripts -d scripts --extensions \".ts\"",
"bench": "node --trace-warnings --prof benchmarks/bench_write.js --total=10000 --runners=10",
"bench:read": "node --trace-warnings --prof benchmarks/bench_read.js --total=10000 --runners=10",
"bench:log-clean": "rm -rf ./isolate-*.log",
"bench:graph": "node --prof-process --preprocess -j isolate*.log | flamebearer",
"build:src": "babel src -d build/src --ignore 'src/tests' --source-maps --extensions \".ts\"",
"build:port-node": "babel port/node -d build/port/node --ignore 'src/tests' --source-maps --extensions \".ts\"",
"build": "npm run build:src && npm run build:port-node",
"build:tsc": "tsc -d",
"build:deno": "node scripts/transform2deno.js",
"prepublish": "export NODE_ENV=production && npm run build"
},
"files": [
"build",
"LICENSE"
],
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.6.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-bigint": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.6.0",
"@types/assert": "^1.4.3",
"@types/buffer-crc32": "^0.2.0",
"@types/jest": "^24.0.22",
"@types/lru-cache": "^5.1.0",
"@types/node": "^12.11.7",
"@types/rimraf": "^2.0.3",
"@types/signal-exit": "^3.0.0",
"@types/varint": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"flamebearer": "^1.1.3",
"glob": "^7.1.6",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"typescript": "^3.9.3",
"yargs": "^15.0.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov"
]
}
}