-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "@invertase/node-paddle-sdk",
"private": false,
"version": "0.3.3",
"description": "A fully typed NodeJS library for integration with Paddle.",
"type": "module",
"main": "dist/node-paddle-sdk.cjs.js",
"module": "dist/node-paddle-sdk.es.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint './src/**/*.ts' --quiet --fix",
"build": "rimraf dist && rollup --config rollup.config.js",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^3.18.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.3.5"
},
"dependencies": {
"crypto": "^1.0.1",
"got": "^11.8.2",
"locutus": "^2.0.15"
}
}