-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.11 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": "coinspot-v2-api",
"version": "1.2.2",
"description": "CoinSpot v2 API https://www.coinspot.com.au/v2/api",
"homepage": "https://npmjs.com/coinspot-api-v2",
"keywords": [
"coinspot",
"api",
"crypto",
"bitcoin",
"exchange",
"cryptocurrency",
"node",
"wrapper",
"api"
],
"repository": {
"type": "github",
"url": "git+https://github.com/jamesbuch/coinspot-api-v2.git"
},
"bugs": {
"url": "https://github.com/jamesbuch/coinspot-api-v2/issues"
},
"license": "BSD-3-Clause",
"type": "commonjs",
"author": {
"name": "James Buchanan",
"email": "jamesbuch1337@gmail.com",
"url": "https://github.com/jamesbuch"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc && npm run copy-examples",
"copy-examples": "copyfiles -u 1 \"src/examples/**/*\" dist",
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\", \"target\": \"es2018\" }' mocha -r ts-node/register --parallel 'tests/**/*.ts'",
"dev": "ts-node src/examples/demo.ts",
"lint": "eslint .",
"example": "ts-node --esm src/examples/demo.ts"
},
"dependencies": {
"axios": "^1.7.7",
"cross-env": "^7.0.3",
"winston": "^3.14.2"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@tsconfig/strictest": "^2.0.5",
"@types/chai": "^4.3.19",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "8.5.0",
"@typescript-eslint/parser": "8.5.0",
"chai": "^4.5.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"mocha": "^10.7.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.5.0"
}
}