This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "@loopholelabs/polyglot-ts",
"version": "1.0.1",
"description": "TypeScript version of the Polyglot data encoding library.",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"build": "parcel build",
"docs": "typedoc src/index.ts",
"update-test-data": "curl -Lo data/polyglot-test-data.json https://github.com/loopholelabs/polyglot-test-data/releases/latest/download/polyglot-test-data.json",
"test": "jest"
},
"targets": {
"default": {
"distDir": "./dist"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pojntfx/polyglot-ts.git"
},
"keywords": [
"polyglot",
"frpc",
"frisbee"
],
"author": "Felicitas Pojtinger <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pojntfx/polyglot-ts/issues"
},
"homepage": "https://github.com/pojntfx/polyglot-ts#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.6.2",
"@parcel/transformer-typescript-types": "^2.6.2",
"@parcel/validator-eslint": "^2.6.2",
"@parcel/validator-typescript": "^2.6.2",
"@types/jest": "^28.1.5",
"@types/json-bigint": "^1.0.1",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"json-bigint": "^1.0.0",
"parcel": "^2.6.2",
"prettier": "^2.7.1",
"process": "^0.11.10",
"ts-jest": "^28.0.6",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
}
}