-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@coinbarn/ergo-ts",
"version": "0.3.0",
"description": "The library for Ergo platform written in TypeScript and compiled to JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "yarn build",
"prepublishOnly": "npm test && npm run lint",
"publishPublic": "yarn build && npm publish --access public",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push origin master && git push --tags",
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"flowgen": "for i in $(find dist -type f -name '*.d.ts'); do sh -c \"flowgen $i -o ${i%.*.*}.js.flow\"; done;",
"lint": "tslint -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coinbarn/ergo-ts.git"
},
"keywords": [
"ergo",
"blockchain",
"cryptocurrency"
],
"author": "Coinbarn",
"license": "MIT",
"bugs": {
"url": "https://github.com/coinbarn/ergo-ts/issues"
},
"homepage": "https://github.com/coinbarn/ergo-ts",
"dependencies": {
"@root/encoding": "^1.0.1",
"array.prototype.flat": "^1.2.2",
"axios": "0.19.0",
"blakejs": "^1.1.0",
"bn.js": "^4.11.8",
"bs58": "^4.0.1",
"elliptic": "^6.4.1",
"secure-random": "1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.18",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"axios-mock-adapter": "^1.16.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"codecov": "^3.5.0",
"core-js": "^3.1.4",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"node-loader": "^0.6.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"majestic": {
"jestScriptPath": "../node_modules/jest/bin/jest.js",
"args": [
"--config=./jest.config.js"
],
"env": {
"CI": "true"
}
},
"files": [
"dist/**/*"
]
}