-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "@ironcorelabs/ironnode",
"version": "1.0.0",
"description": "IronCore Labs SDK for NodeJS Applications",
"homepage": "https://docs.ironcorelabs.com",
"main": "index.js",
"repository": "[email protected]:IronCoreLabs/ironnode.git",
"author": "IronCore Labs",
"license": "AGPL-3.0-only",
"types": "ironnode.d.ts",
"engines": {
"node": ">=12.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\""
},
"dependencies": {
"@ironcorelabs/recrypt-node-binding": "^0.10.0",
"futurejs": "2.1.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^12.12.52",
"@types/node-fetch": "^2.5.7",
"inquirer": "^7.3.3",
"jest": "^26.1.0",
"jest-extended": "^0.11.5",
"jsonwebtoken": "^9.0.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.7",
"typestrict": "^1.0.2"
},
"resolutions": {
"micromatch": "^4.0.8"
},
"prettier": {
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
}