-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.6 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
{
"name": "@node-steam/id",
"version": "1.2.0",
"description": "Module to make SteamID usage and conversion easy",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/node-steam/id",
"bugs": "https://github.com/node-steam/id/issues",
"repository": {
"url": "https://github.com/node-steam/id.git",
"type": "git"
},
"author": "N|Steam",
"keywords": [
"steam",
"valve",
"id",
"typescript",
"es6",
"es7"
],
"files": [
"lib/*.js",
"lib/*.d.ts",
"example/*.js"
],
"contributors": [
{
"name": "Silas Rech",
"email": "silas.rech@protonmail.com",
"url": "https://lenovouser.me"
}
],
"runkitExampleFilename": "example/runkit.js",
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"scripts": {
"compile": "tsc -p .",
"test": "yarn compile && TS_NODE_PROJECT=test/tsconfig.json ava",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"docs": "typedoc src/index.ts",
"prepublish": "yarn lint && yarn test && yarn docs"
},
"ava": {
"files": [
"test/*.ts",
"test/**/*.ts"
],
"concurrency": 10,
"verbose": true,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"devDependencies": {
"@types/node": "^15",
"ava": "^3",
"ts-node": "^10",
"tsconfig-paths": "^3",
"tslint": "^6",
"typescript": "^4"
},
"dependencies": {
"@types/cuint": "0.2.1",
"cuint": "0.2.2"
}
}