-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 949 Bytes
/
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
{
"name": "@ylide/smart-buffer",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.17",
"description": "Ylide Protocol SDK utils library to handle different types of buffers",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ylide-io/smart-buffer.git"
},
"files": [
"lib/**/*",
"src/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"keywords": [
"blockchain",
"messaging",
"buffers"
],
"author": "Danila Simonov",
"license": "ISC",
"devDependencies": {
"@types/node": "20.4.5",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "5.1.6"
}
}