-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.44 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
{
"name": "@cypherock/protocols",
"version": "3.0.1-beta.15",
"description": "Communication protocols for the cypherock x1 wallet",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json -c tslint.json --fix",
"lint:check": "tslint -p tsconfig.json -c tslint.json",
"pretty": "prettier --write 'src/**/*.ts'",
"pretty:check": "prettier --check 'src/**/*.ts'",
"test": "mocha -r ts-node/register test/test.ts"
},
"author": "Cypherock",
"license": "AGPL-3.0",
"dependencies": {
"@cypherock/communication": "3.0.1-beta.12",
"@cypherock/database": "3.0.1-beta.10",
"@cypherock/server-wrapper": "1.0.1-beta.7",
"@cypherock/wallet": "3.0.1-beta.13",
"@types/bignumber.js": "^5.0.0",
"bignumber.js": "^9.0.2",
"winston": "^3.5.1"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/nedb": "^1.8.12",
"@types/node": "^17.0.15",
"@types/serialport": "^8.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.2",
"typescript": "^4.5.5"
},
"files": [
"dist",
"package.json"
],
"lint-staged": {
"*.{ts,tsx}": [
"tslint -p tsconfig.json -c tslint.json --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}