-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.68 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tonicpow-js",
"version": "0.2.6",
"description": "TonicPow API Library in JS - https://docs.tonicpow.com",
"main": "dist/api.js",
"module": "./module/api.js",
"repository": {
"type": "git",
"url": "https://github.com/tonicpow/tonicpow-js/"
},
"author": {
"name": "TonicPow",
"email": "support@tonicpow.com",
"url": "https://docs.tonicpow.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tonicpow/tonicpow-js/issues"
},
"scripts": {
"clean": "rimraf dist/ && rimraf module/",
"build": "npm run build-node && npm run build-module",
"build-node": "rimraf dist/ && babel lib/ --presets minify --out-dir dist/",
"build-module": "cross-env BABEL_ENV=module babel ./lib --out-dir ./module --source-maps --copy-files",
"deploy": "npm publish --access public",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix",
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"test": "npm run lint && npm run testquiet",
"testquiet": "./node_modules/.bin/jest --detectOpenHandles --forceExit --silent",
"testonly": "./node_modules/.bin/jest --collectCoverage --detectOpenHandles --forceExit",
"testwatch": "./node_modules/.bin/jest --watchAll --collectCoverage --detectOpenHandles"
},
"contributors": [
{
"name": "Satchmo",
"url": "https://github.com/rohenaz/"
},
{
"name": "MrZ",
"url": "https://github.com/mrz1836/"
}
],
"keywords": [
"tonic",
"tonicpow",
"tonic pow",
"bitcoin",
"bsv"
],
"homepage": "https://docs.tonicpow.com",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.4",
"@babel/register": "^7.12.10",
"@jest/globals": "^29.0.0",
"babel-core": "^7.0.0-bridge.0",
"@babel/eslint-parser": "^7.15.8",
"babel-jest": "^29.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-minify": "^0.5.1",
"cross-env": "^7.0.3",
"eslint": "^9.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^29.0.0",
"jest-cli": "^29.0.0",
"npm-check": "^6.0.1",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.14.0",
"rimraf": "6.0.1",
"run-sequence": "2.2.1"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"axios": "^1.0.0",
"browser-or-node": "^3.0.0"
},
"files": [
"dist/*"
],
"bin": {
"tonicpow-js": "dist/api.js"
},
"jest": {
"transform": {
"^.+\\.(mjs|jsx|js)$": "babel-jest"
}
},
"engines": {
"node": "*"
}
}