-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 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
{
"name": "dexm-js",
"version": "1.0.0",
"description": "Dexm manager for JS",
"main": "src/index.js",
"repository": "https://github.com/dexm-coin/dexm-js.git",
"author": "giulioz <mail.zausa.giulio@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/crc": "^3.4.0",
"@types/crypto-js": "^3.1.43",
"@types/elliptic": "^6.4.0",
"prettier": "^1.14.3",
"ts-loader": "^5.2.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.1.3",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2"
},
"scripts": {
"build": "webpack",
"format": "prettier --write src/**/*.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"dependencies": {
"@types/ws": "^6.0.1",
"crc": "^3.8.0",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"isomorphic-ws": "^4.0.1",
"protobufjs": "^6.8.8"
}
}