forked from sailpoint-oss/colab-saas-conn-identity-fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "identity-fusion",
"version": "0.0.3",
"main": "dist/index.js",
"scripts": {
"clean": "shx rm -rf ./dist",
"prebuild": "npm run clean",
"build": "npx ncc build ./src/index.ts -o ./dist -m -C",
"dev": "spcx run dist/index.js",
"prettier": "npx prettier --write .",
"test": "jest --coverage",
"prepack-zip": "npm ci && npm run build",
"pack-zip": "spcx package"
},
"private": true,
"dependencies": {
"@sailpoint/connector-sdk": "1.1.11",
"axios": "^1.6.8",
"axios-retry": "^4.0.0",
"fast-levenshtein": "3.0.0",
"markdown-it": "^14.0.0",
"sailpoint-api-client": "1.3.0",
"transliteration": "^2.3.5",
"uuid": "^9.0.1",
"velocityjs": "^2.0.6"
},
"devDependencies": {
"@types/fast-levenshtein": "^0.0.2",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.17",
"@types/uuid": "^9.0.8",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}