-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.23 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": "@croct/sdk",
"version": "0.0.0-dev",
"description": "Croct SDK for JavaScript.",
"license": "MIT",
"author": {
"name": "Croct",
"email": "[email protected]",
"url": "https://croct.com"
},
"main": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/sdk-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/sdk-js/issues"
},
"homepage": "https://github.com/croct-tech/sdk-js#readme",
"scripts": {
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@croct/json": "^2.0.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.7.0",
"@types/jest": "^29.2.3",
"eslint": "^8.57.0",
"fetch-mock": "^9.11.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-extended": "^4.0.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0"
},
"files": [
"**/*.js",
"**/*.ts",
"**/*.map"
],
"browserslist": [
"last 1 version"
]
}