-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 894 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
{
"name": "js-actionnetwork",
"version": "1.0.7",
"description": "A comprehensive client library, ensuring full compatibility with the ActionNetwork v2 API",
"main": "./cjs/actionnetwork.js",
"exports": {
".": {
"import": "./esm/actionnetwork.mjs",
"require": "./cjs/actionnetwork.js"
}
},
"license": "MIT",
"keywords": [
"action-network",
"actionnetwork",
"api",
"client",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NirTatcher/actionnetworkjs.git"
},
"author": "NirTatcher",
"devDependencies": {
"eslint": "^8.56.0"
},
"scripts": {
"lint:esm": "eslint ./esm --ext .js,.mjs",
"lint:cjs": "eslint ./cjs --ext .js",
"lint": "npm run lint:esm && npm run lint:cjs"
}
}