-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.04 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
92
93
{
"name": "@node-steam/market-pricing",
"version": "2.1.0",
"description": "Module to access the Steam Market Pricing API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/node-steam/market-pricing",
"bugs": "https://github.com/node-steam/market-pricing/issues",
"repository": {
"url": "https://github.com/node-steam/market-pricing.git",
"type": "git"
},
"author": "N|Steam",
"keywords": [
"api",
"es6",
"es7",
"market-pricing",
"market",
"price",
"pricing",
"promises",
"skin",
"skins",
"steam-api",
"steam-market",
"steam",
"typescript"
],
"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' 'test/**/*.ts' 'src/*.ts' 'test/*.ts'",
"docs": "typedoc src/index.ts",
"prepublish": "yarn lint && yarn test && yarn docs"
},
"ava": {
"files": [
"test/*.ts",
"test/**/*.ts",
"!test/settings.ts"
],
"concurrency": 10,
"verbose": true,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"devDependencies": {
"@node-steam/data": "^1",
"@types/async": "^3",
"@types/bluebird": "^3",
"@types/nock": "^10",
"@types/node": "^12",
"@types/request": "^2",
"ava": "^2",
"nock": "^11",
"ts-node": "^8",
"tsconfig-paths": "^3",
"tslint": "^5",
"typescript": "^3"
},
"dependencies": {
"async": "3.1.0",
"bluebird": "3.5.5",
"request": "2.88.0"
}
}