-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.41 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
85
86
87
88
89
90
91
{
"name": "RaftJS",
"description": "RaftJS implementation",
"version": "0.1.0",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"repository": "https://github.com/maxenglander/raftjs",
"bugs": "https://github.com/maxenglander/raftjs/issues",
"contributors": [],
"author": "Max Englander",
"keywords": [],
"homepage": "https://github.com/maxenglander/raftjs",
"scripts": {
"build": "./node_modules/gulp-cli/bin/gulp.js compile",
"docs": "./node_modules/gulp-cli/bin/gulp.js docs",
"lint:fix": "./node_modules/gulp-cli/bin/gulp.js lint:fix",
"lint:check": "./node_modules/gulp-cli/bin/gulp.js lint:check",
"test": "./node_modules/gulp-cli/bin/gulp.js test"
},
"directories": {
"build": {
"base": "build",
"docs": "build/docs",
"gen": "build/gen",
"dist": "build/dist",
"test": "build/test"
},
"docs": "docs",
"dist": "dist",
"src": "src",
"test": "test"
},
"dependencies": {
"flatbuffers": "^1.10.2",
"pino": "^5.12.2",
"pino-pretty": "^2.6.0",
"yargs": "^13.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/flatbuffers": "^1.9.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/pino": "^5.8.6",
"@types/uuid": "^3.4.4",
"@types/yargs": "^12.0.9",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.2.0",
"del": "^3.0.0",
"dependency-tree": "^7.0.2",
"docco": "^0.8.0",
"eslint": "^7.17.0",
"flatc": "^1.1.0",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.0.1",
"gulp-concat": "^2.6.1",
"gulp-eslint7": "^0.3.0",
"gulp-filter": "^5.1.0",
"gulp-if": "^2.0.2",
"gulp-mocha": "^6.0.0",
"gulp-prettier": "^2.3.0",
"gulp-read": "^1.0.1",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"mocha-logger": "^1.0.6",
"sinon": "^7.2.3",
"through2": "^3.0.0",
"tmp": "^0.2.1",
"ts-sinon": "^2.0.1",
"typescript": "^4.1.0"
},
"engines": {
"node": ">=10.12.0"
}
}