-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.06 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
{
"name": "@NextExchange/nextcoin-js",
"version": "1.2.0",
"description": "Javascript SDK for the Nextcoin cryptocurrency.",
"main": "dist/",
"typings": "dist/",
"scripts": {
"build": "tsc",
"test": "jest",
"build-test": "npm run build && npm run test",
"version-bump": "npm --no-git-tag-version version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcnl1980/nextcoin-js.git"
},
"keywords": [
"nextcoin",
"javascript"
],
"author": "NEXT.exchange",
"license": "ISC",
"bugs": {
"url": "https://github.com/NextExchange/nextcoin-js/issues"
},
"homepage": "https://github.com/NextExchange/nextcoin-js#readme",
"dependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.3",
"axios": "^0.19.2",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2"
},
"devDependencies": {
"html-webpack-plugin": "^4.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"axios": ">=0.18.1"
}
}