-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
135 lines (135 loc) · 3.96 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"author": "Situm Technologies",
"name": "@situm/sdk-js",
"version": "0.8.5",
"description": "A Javascript client to Situm services, supporting Node and browser.",
"repository": "https://github.com/situmtech/situm-sdk-js",
"main": "dist/cjs/situm-sdk.js",
"module": "dist/es5/situm-sdk.js",
"types": "dist/situm-sdk.d.ts",
"type": "module",
"license": "MIT",
"keywords": [
"situm",
"rest",
"sdk",
"api",
"library"
],
"files": [
"dist",
"!dist/dts",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"SECURITY-POLICY.md"
],
"scripts": {
"build:watch": "rollup -c -w;",
"build:clean": "rimraf dist/*",
"build": "run-s build:clean && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript;",
"cov": "run-s build; jest --coverage && open-cli coverage/index.html",
"doc:html": "typedoc",
"doc:json": "typedoc --json",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"fix:lint": "eslint src --fix",
"fix:prettier": "prettier --write \"src/**/*.ts\"",
"fix": "run-s fix:*",
"precommit": "lint-staged",
"prepare-release": "run-s reset-hard test build doc:html",
"reset-hard": "git clean -dfx && git reset --hard && npm i",
"test:lint": "eslint src",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell --no-summary --no-progress --no-must-find-files \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:unit": "jest --coverage",
"test": "run-p test:*",
"version": "standard-version"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@sentry/vite-plugin": "^2.22.5",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/qs": "^6.9.16",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"codecov": "^3.8.3",
"colors": "^1.4.0",
"commitizen": "^4.3.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cspell": "^8.14.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-mock-axios": "^4.7.3",
"lint-staged": "^15.2.10",
"lodash.camelcase": "^4.3.0",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"replace-in-file": "^8.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.21.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-license": "^3.5.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"run-s": "^0.0.0",
"semantic-release": "^24.1.2",
"shelljs": "^0.8.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.26.8",
"typedoc-github-theme": "^0.1.2",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "5.5.4"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}