-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 923 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
{
"name": "@l2-technology/sensei-client",
"version": "0.1.25",
"description": "A javascript client for the Sensei HTTP API",
"main": "src/index.js",
"types": "src/index.d.ts",
"type": "commonjs",
"homepage": "https://github.com/L2-Technology/sensei-client-js",
"repository": {
"type": "git",
"url": "git+https://github.com/L2-Technology/sensei-client-js.git"
},
"scripts": {
"format": "prettier --write \"src/**/*.js\"",
"prepublishOnly": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config jestconfig.json"
},
"files": [
"src/**/*"
],
"author": "John Cantrell <[email protected]>",
"license": "ISC",
"keywords": [
"l2",
"sensei",
"lightning",
"bitcoin"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.5.0",
"prettier": "^2.5.1"
}
}