-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.06 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
{
"name": "@linkurious/rest-client",
"version": "4.1.7",
"description": "A library to interact with Linkurious APIs",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/linkurious-rest-client.git"
},
"author": "Linkurious",
"license": "MIT",
"bugs": {
"url": "https://github.com/Linkurious/linkurious-rest-client/issues"
},
"engines": {
"node": "20.18.0"
},
"homepage": "https://github.com/Linkurious/linkurious-rest-client#readme",
"scripts": {
"build": "tsc",
"test": "npm run compile && mocha dist/test",
"test:unit": "nyc --reporter=text-summary --reporter=cobertura --report-dir=reports mocha --reporter mocha-multi-reporters --reporter-options configFile=.test-reporters.json dist/test",
"compile": "tsc -b",
"tsc": "tsc",
"lint": "eslint --fix --ext .ts .",
"lint:ci": "eslint -f checkstyle -o reports/checkstyle.xml --ext .ts .",
"watch": "tsc -w | tee",
"clean": "rm -rf node_modules; rm -rf package-lock.json; rm -rf dist",
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
"bump:major": "bump2version major && npm version --no-git-tag-version --no-commit-hooks --no-workspaces-update major"
},
"devDependencies": {
"@types/mocha": "10.0.6",
"@types/express": "4.17.15",
"@types/superagent": "4.1.20",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-es5": "1.5.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"mocha": "10.2.0",
"mocha-junit-reporter": "2.2.1",
"mocha-multi-reporters": "1.5.1",
"nyc": "15.1.0",
"prettier": "3.1.1",
"typescript": "5.5.4"
},
"dependencies": {
"superagent": "8.1.2"
},
"publishConfig": {
"access": "public"
}
}