-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "lsat-js",
"version": "2.0.6",
"description": "Utility library for working with LSAT auth tokens in javascript",
"main": "./dist/index.js",
"repository": "https://github.com/Tierion/lsat-js",
"author": "Buck Perley",
"license": "MIT",
"private": false,
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf dist && mkdir dist",
"lint": "tsc --noEmit --project tsconfig.json && eslint --ext .ts src --quiet",
"test": "nyc ts-mocha -p tsconfig.json tests/**/*.spec.ts",
"test:watch": "ts-mocha -p tsconfig.json --reporter spec --watch --watch-extensions ts tests/**/*.spec.ts",
"docs": "./docs.sh",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run clean && npm run build && npm run docs",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@stablelib/base64": "^1.0.1",
"@types/node": "^13.1.0",
"@types/sjcl": "^1.0.29",
"@types/uuid": "^3.4.6",
"bolt11": "^1.3.2",
"bsert": "^0.0.10",
"bufio": "^1.0.6",
"macaroon": "git+https://github.com/tierion/js-macaroon.git#ts",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^2.9.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^8.8.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"mocha": "^9.2.0",
"nyc": "^15.0.0",
"prettier": "1.18.2",
"sinon": "^7.5.0",
"ts-mocha": "^6.0.0",
"tslint": "^5.20.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}