-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 KB
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
{
"name": "@poool/subscribe-node-sdk",
"version": "2.0.0",
"description": "Poool Subscribe SDK for Node",
"main": "dist/index.cjs.js",
"jsnext:main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"esnext": "src/index.js",
"repository": "https://github.com/p3ol/subscribe-node-sdk.git",
"author": "dackmin <ugo@poool.fr>",
"license": "MIT",
"engines": {
"node": "16 || 18",
"yarn": "1"
},
"scripts": {
"build": "rollup -c",
"serve": "NODE_ENV=development node scripts/serve.js",
"test": "BABEL_ENV=test jest",
"lint": "eslint",
"prepack": "yarn lint && yarn test && yarn build",
"release": "standard-version",
"postrelease": "git push --follow-tags"
},
"peerDependencies": {
"node-fetch": "^2.6.0 || ^3.2.0",
"query-string": "^7.1.0"
},
"devDependencies": {
"@babel/core": "7.22.20",
"@babel/eslint-parser": "7.22.15",
"@babel/eslint-plugin": "7.22.10",
"@babel/preset-env": "7.22.20",
"@poool/eslint-config": "3.0.1",
"@poool/eslint-config-node": "3.0.1",
"@poool/eslint-plugin": "3.0.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"babel-jest": "29.6.4",
"eslint": "8.47.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.6.4",
"nock": "13.3.6",
"node-fetch": "2.7.0",
"nodemon": "3.0.1",
"query-string": "7.1.3",
"rollup": "3.28.1",
"standard-version": "9.5.0"
}
}