-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "@moonlight-io/asteroid-sdk-js",
"version": "0.25.0",
"description": "",
"main": "dist/index",
"types": "dist/index",
"repository": {
"type": "git",
"url": "https://github.com/Moonlight-io/asteroid-sdk-js.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"private": true,
"scripts": {
"tsc": "tsc",
"eslint": "eslint",
"prettier": "prettier",
"typedoc": "typedoc",
"clean": "rm -rf ./dist",
"dev": "npm run clean && tsc --watch",
"build": "npm run clean && tsc",
"rebuild": "rm -rf ./node_modules && npm install",
"rebuild:hard": "rm -rf package-lock.json && npm run rebuild",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts --fix",
"format": "prettier --write './{src,examples,tests,data}/**/*.{ts,js,json}'",
"format:windows": "prettier --write \"./{src,examples,tests,data}/**/*.{ts,js,json}\"",
"test": "jest ./tests/**/*",
"buildDocs": "typedoc --out docs/ --mode file",
"publishDocs": "aws s3 sync ./docs s3://docs.moonlight.io/js --acl public-read",
"version:minor": "npm version minor",
"version:patch": "npm version patch"
},
"dependencies": {
"@cityofzion/neon-js": "^4.7.1",
"@types/lodash": "^4.14.157",
"axios": "^0.19.2",
"bip39": "^3.0.2",
"bs58": "^4.0.1",
"build-url": "^2.0.0",
"crypto": "^1.0.1",
"elliptic": "^6.5.3",
"json-rpc-error": "^2.0.0",
"lodash": "^4.17.19",
"node-log-it": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"axios-mock-adapter": "^1.18.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
}
}