-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@lightninglabs/lnc-web",
"version": "0.3.2-alpha",
"description": "Lightning Node Connect npm module for web",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "webpack --watch --stats-error-details",
"test": "mocha --reporter spec",
"prettier": "prettier --check '**/*.ts*'",
"prettier-write": "prettier --check --write '**/*.ts*'",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run prettier && git add -A lib",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightninglabs/lnc-web.git"
},
"keywords": [
"lightning",
"lnd",
"lightning-node-connect",
"lnc"
],
"author": "Evan Kaloudis",
"bugs": {
"url": "https://github.com/lightninglabs/lnc-web/issues"
},
"homepage": "https://github.com/lightninglabs/lnc-web#readme",
"devDependencies": {
"@types/crypto-js": "4.1.1",
"@types/debug": "4.1.7",
"@types/node": "17.0.16",
"chai": "4.3.6",
"clean-webpack-plugin": "4.0.0",
"mocha": "9.2.2",
"node-polyfill-webpack-plugin": "1.1.4",
"prettier": "2.6.0",
"ts-loader": "9.5.1",
"ts-node": "10.7.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.5.5",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@lightninglabs/lnc-core": "0.3.2-alpha",
"crypto-js": "4.2.0"
},
"browser": {
"fs": false,
"os": false,
"crypto": false
},
"files": [
"dist/**/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"license": "MIT"
}