-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.94 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
76
{
"name": "@permanentorg/sdk",
"version": "0.8.0",
"description": "Functional Node.js SDK for Permanent.org",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"scripts": {
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --fix --ext .ts",
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc -p tsconfig.node.json",
"build:browser": "tsc -p tsconfig.browser.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PermanentOrg/permanent-sdk.git"
},
"funding": "https://permanent.org/donate/",
"author": {
"name": "Permanent.org",
"email": "engineers@permanent.org",
"url": "https://www.permanent.org/"
},
"contributors": [
{
"name": "Natalie Martin"
},
{
"name": "Daniel Schultz",
"email": "slifty@gmail.com",
"url": "https://slifty.com"
},
{
"name": "Fon E. Noel",
"url": "https://github.com/fenn-cs"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PermanentOrg/permanent-sdk/issues"
},
"engines": {
"node": ">=16.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/PermanentOrg/permanent-sdk#readme",
"devDependencies": {
"@tsconfig/esm": "^1.0.0",
"@tsconfig/node18": "^18.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^18.17.4",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-sort-exports": "^0.9.1",
"jest": "^29.6.2",
"nock": "^13.2.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"ajv": "^8.11.0",
"form-data": "^4.0.0",
"node-fetch": "^2.6.7"
},
"publishConfig": {
"access": "public"
}
}