-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 977 Bytes
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 977 Bytes
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
{
"name": "@syscoin/syscoin-js",
"version": "4.2.0",
"description": "Javascript SDK for the Syscoin 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/syscoin/syscoin-js.git"
},
"keywords": [
"syscoin",
"javascript"
],
"author": "Blockchain Foundry",
"license": "ISC",
"bugs": {
"url": "https://github.com/syscoin/syscoin-js/issues"
},
"homepage": "https://github.com/syscoin/syscoin-js#readme",
"dependencies": {
"@types/node": "^12.0.1",
"axios": ">=0.18.1",
"typescript": "^3.4.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"ts-jest": "^26.5.5",
"ts-loader": "^6.0.0"
},
"peerDependencies": {
"axios": ">=0.18.1"
}
}