-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 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
55
56
57
58
59
60
61
62
{
"name": "@ironcorelabs/ironnode",
"version": "1.1.2-pre",
"description": "IronCore Labs SDK for NodeJS Applications",
"homepage": "https://docs.ironcorelabs.com",
"main": "index.js",
"repository": "git@github.com:IronCoreLabs/ironnode.git",
"author": "IronCore Labs",
"license": "AGPL-3.0-only",
"types": "ironnode.d.ts",
"engines": {
"node": ">=20.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"start": "_ICL_API_DOMAIN_REPLACEMENT_=http://localhost:9090 ts-node -- ./integration/index.ts",
"build": "./build.js",
"test": "yarn run lint && yarn run unit",
"unit": "jest --coverage",
"lint": "tslint -p \"tsconfig.json\" -e \"**/tests/**\" \"src/**/*.ts\"",
"prepublishOnly": "[ -f index.js ] || (echo \"index.js not found. Ensure you're publishing from ./dist.\" && exit 1)"
},
"dependencies": {
"@ironcorelabs/recrypt-node-binding": "^0.11.0",
"futurejs": "2.2.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^20.14.8",
"inquirer": "^12.9.2",
"jest": "^26.6.0",
"jest-extended": "^0.11.5",
"jsonwebtoken": "^9.0.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^4.9.5",
"typestrict": "^1.0.2"
},
"resolutions": {
"micromatch": "^4.0.8"
},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
}