-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "teslacoil",
"version": "0.7.7",
"main": "dist/teslacoil.js",
"types": "dist/teslacoil.d.ts",
"author": "[email protected]",
"license": "MIT",
"homepage": "https://teslacoil.io",
"dependencies": {
"axios": "^0.21.1"
},
"scripts": {
"build": "yarn tsc",
"clean": "rimraf lib",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepublishOnly": "npm-run-all lint clean build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint src/*.ts",
"compile-restful": "cd node_modules/restful-react && yarn install && yarn build",
"gen-code": "bash gen-code.sh"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"restful-react": "https://github.com/bjornoj/restful-react",
"typescript": "^3.7.2"
},
"files": [
"dist/**/*.ts",
"dist/**/*.js"
],
"description": "package for sending and receiving bitcoin payments",
"repository": "https://github.com/arcanetechnology/npm-teslacoil"
}