-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.59 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
{
"name": "@notihub/notihub-nodejs-sdk",
"version": "0.4.3",
"description": "Notihub Official Node.js SDK",
"keywords": [
"notihub",
"javascript",
"nodejs",
"api",
"backend"
],
"author": {
"name": "Gabriel Villoldo",
"email": "[email protected]",
"url": "https://notihub.io/"
},
"main": "./dist/dist-src",
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/notihub-io/notihub-nodejs-sdk",
"contributors": [
"Gabriel Villoldo <[email protected]>"
],
"license": "MIT",
"scripts": {
"build": "pika build --out dist/",
"lint": "xo",
"test": "echo \"Error: no test specified\" && exit 0",
"publish": "pika publish --contents=dist/",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notihub-io/notihub-nodejs-sdk.git"
},
"bugs": {
"url": "https://github.com/notihub-io/notihub-nodejs-sdk/issues"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"xo": "^0.33.1"
},
"dependencies": {
"js-base64": "^3.5.2",
"node-fetch": "^2.6.1"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
]
],
"modules": false
},
"publishConfig": {
"access": "public"
},
"xo": {
"envs": [
"node"
],
"ignores": [
"dist"
]
}
}