-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "libargus",
"version": "0.3.0",
"description": "A typesafe MIT licensed library to interact with the Lisk blockchain",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/prolina-foundation/libargus",
"author": "Simon Warta & Lisk Builders",
"license": "MIT",
"scripts": {
"format": "prettier --write './src/**/*.ts'",
"lint": "tslint -t verbose --project .",
"prebuild": "yarn format && yarn lint",
"build": "npx tsc",
"test": "mocha \"build/**/*.spec.js\""
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"socketcluster-client": "^14.2.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/request": "^2.48.0",
"@types/request-promise-native": "^1.0.15",
"@types/underscore": "^1.8.9",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"tslint": "^5.11.0",
"tslint-immutable": "^4.9.1",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.1.3"
}
}