-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "@xyo-network/sdk-core-nodejs",
"version": "0.70.25",
"description": "A workspace to aggregated nodejs XYO projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "XY Development Team",
"license": "LGPL-3.0",
"scripts": {
"build": "yarn xybuild",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test": "yarn build && yarn lint && yarn licensecheck && export NODE_ENV=test && jest --no-cache --forceExit --coverage --verbose false --detectOpenHandles",
"start:tcp": "yarn build && node --nolazy -r ts-node/register examples/tcp-server/index.ts",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "git://github.com/XYOracleNetwork/sdk-core-nodejs.git"
},
"devDependencies": {
"@types/elliptic": "^6.4.8",
"@types/jest": "^24.0.13",
"@types/node": "12.0.3",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"enquirer": "^2.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.4.0",
"license-checker": "^25.0.1",
"prettier": "^1.19.1",
"shelljs": "^0.8.3",
"ts-jest": "^25.4.0",
"ts-node": "8.2.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@xyo-network/sdk-base-nodejs": "^0.6.6",
"bs58": "4.0.1",
"elliptic": "6.5.4",
"snyk": "^1.316.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true
},
"files": [
"dist",
"bin"
],
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/src/"
],
"testEnvironment": "node"
},
"snyk": true
}