-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.08 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
94
95
96
97
98
99
{
"name": "dna-ts-sdk",
"version": "1.1.0",
"description": "Comprehensive TypeScript library for the DNA blockchain.",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"test": "jest",
"lint": "tslint --project ./",
"build:dev": "cross-env NODE_ENV=development webpack --mode development --display-error-details --progress --color",
"build:prod": "cross-env NODE_ENV=production webpack --mode production --progress --color",
"prepublish": "npm run lint && npm run build:prod",
"compile": "tsc"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": "/test/.*\\.(ts|tsx|js)$"
},
"author": "DNAProject",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/DNAProject/DNA-ts-SDK"
},
"keywords": [
"ontology",
"ont",
"typescript",
"sdk"
],
"bugs": {
"url": "https://github.com/DNAProject/DNA-ts-SDK/issues"
},
"devDependencies": {
"@types/base64-url": "^2.2.0",
"@types/bs58": "^3.0.30",
"@types/crypto-js": "^3.1.38",
"@types/ecurve": "^1.0.0",
"@types/jest": "^22.1.2",
"@types/long": "^4.0.0",
"@types/node": "^8.5.2",
"@types/promise-timeout": "^1.3.0",
"@types/scrypt-async": "^1.3.0",
"@types/uuid": "^3.4.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"jest": "^23.0.0",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-no-circular-imports": "^0.4.0",
"typedoc": "^0.11.1",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@ont-community/hdkey-secp256r1": "^1.0.1",
"@ont-community/html5-websocket": "^2.0.2",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"base-58": "^0.0.1",
"base64-url": "^2.2.0",
"bignumber.js": "^7.2.1",
"bip39": "^2.5.0",
"crypto-js": "^3.1.9-1",
"ecdsa": "^0.7.0",
"ecurve": "^1.0.6",
"elliptic": "^6.4.0",
"js-sha3": "^0.7.0",
"long": "^4.0.0",
"milagro-crypto-js": "^3.3.0",
"pkcs7": "^1.0.2",
"promise-timeout": "^1.3.0",
"scrypt-async": "^2.0.0",
"secure-random": "^1.1.1",
"sm.js": "0.1.7",
"uuid": "^3.2.1",
"websocket-as-promised": "^0.8.0",
"wif": "^2.0.6",
"ws": "^4.1.0"
}
}