-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 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
65
66
67
68
69
70
71
72
{
"name": "@typescord/ftee",
"version": "0.9.1",
"main": "build/index.js",
"types": "build/index.d.ts",
"description": "Ftee is a fast encoder and decoder for the Erlang External Term Format (version 131) written in TypeScript.",
"author": "Typescord",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepack": "yarn build",
"build": "rimraf build && tsc -p tsconfig.prod.json",
"test": "tap --node-arg=--require=ts-node/register",
"test-coverage": "yarn test --coverage-report=lcov",
"lint": "eslint . --ext ts",
"lint-fix": "yarn lint --fix",
"format": "prettier . --write",
"benchmark": "yarn build && node benchmark.js",
"mrm": "mrm --preset @typescord/mrm-preset"
},
"homepage": "https://github.com/typescord/ftee#readme",
"bugs": {
"url": "https://github.com/typescord/ftee/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typescord/ftee.git"
},
"prettier": "@typescord/prettier-config",
"files": [
"build"
],
"keywords": [
"discord",
"ftee",
"etf",
"typescord"
],
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/node": "^16.6.1",
"@types/tap": "^15.0.5",
"@typescord/eslint-config": "^0.4.0",
"@typescord/mrm-preset": "^2.1.2",
"@typescord/prettier-config": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"benchmark": "^2.1.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-unicorn": "^35.0.0",
"mrm": "^3.0.8",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tap": "^15.0.9",
"ts-node": "^10.2.0",
"typescript": "~4.3.5"
},
"resolutions": {
"node-preload": "0.2.0"
},
"volta": {
"node": "15.14.0"
}
}