-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "@salto-io/stripe-adapter",
"version": "0.5.1",
"license": "SEE LICENSE IN LICENSE",
"description": "Salto stripe adapter",
"repository": {
"type": "git",
"url": "https://github.com/salto-io/salto"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/src",
"dist/index.*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "../../build_utils/turbo_run.sh build-ts ; ../../build_utils/turbo_run.sh lint",
"test": "jest",
"clean": "rm -rf ./dist .eslintcache",
"watch-test": "yarn tsc-watch",
"build-ts": "tsc -b",
"watch-ts": "tsc -b -w",
"lint": "eslint --max-warnings 0 ./",
"lint-fix": "yarn lint --fix",
"format": "prettier --write . --ignore-path=../../.prettierignore --ignore-path=../../.gitignore --ignore-path=.gitignore",
"check-format": "prettier --check . --ignore-path=../../.prettierignore --ignore-path=../../.gitignore --ignore-path=.gitignore"
},
"dependencies": {
"@salto-io/adapter-api": "0.5.1",
"@salto-io/adapter-components": "0.5.1",
"@salto-io/adapter-utils": "0.5.1",
"@salto-io/logging": "0.5.1",
"axios": "^1.7.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@salto-io/element-test-utils": "0.5.1",
"@salto-io/jest-extended": "^4.0.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.168",
"axios": "^1.7.2",
"axios-mock-adapter": "^1.19.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.2.0",
"tsc-watch": "^2.2.1",
"turbo": "^2.0.6",
"typescript": "4.8.4"
}
}