-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.21 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
{
"name": "@spio-wyin/wyin-sdk-feed",
"author": "spio wyin team",
"homepage": "https://app.spio-wyin.workers.dev/",
"version": "2.0.0",
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"description": "SDK for serving historical events under WYIN project",
"keywords": [
"wyin",
"spio",
"sdk",
"feed"
],
"bugs": {
"url": "https://gitlab.com/spio-wyin/wyin-sdk-feed/-/issues"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/spio-wyin/wyin-sdk-feed.git"
},
"engines": {
"node": ">=14",
"yarn": "^1.22.5"
},
"scripts": {
"prepare": "git config --local core.hooksPath .githooks || echo 'Could not set git hooks'",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"recommended-bump": "conventional-recommended-bump -p angular",
"docs": "yarn run typedoc --out docs src/",
"docs:gitlab": "yarn run typedoc --out public src/",
"build": "tsc",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix && tsc --noEmit --pretty",
"lint:ci": "eslint '*/**/*.{js,ts,tsx}' --max-warnings=0 && tsc --noEmit --pretty",
"lint:commit": "commitlint",
"test": "yarn run test:unit",
"test:unit": "nyc --reporter=text mocha",
"test:unit:cicd": "nyc mocha --reporter=mocha-junit-reporter --reporter-options mochaFile='./tests_artifacts/junit_report.xml'",
"update-schemas": "./scripts/typescript-to-json-schema.sh"
},
"dependencies": {
"@types/cheerio": "^0.22.30",
"@types/romans": "2.0.0",
"axios": "^0.23.0",
"cheerio": "^1.0.0-rc.10",
"romans": "2.0.3",
"ts-custom-error": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@pollyjs/adapter-node-http": "^5.1.1",
"@pollyjs/core": "^5.1.1",
"@pollyjs/persister-fs": "^5.1.1",
"@tsconfig/node14": "^1.0.1",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.31",
"@types/pollyjs__adapter-node-http": "^2.0.1",
"@types/pollyjs__core": "^4.3.3",
"@types/pollyjs__persister-fs": "^2.0.1",
"@types/sinon": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"conventional-changelog-cli": "^2.1.1",
"conventional-recommended-bump": "^6.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.2",
"mocha-junit-reporter": "^2.0.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sinon": "^11.1.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
"typedoc": "^0.22.7",
"typescript": "^4.4.3",
"typescript-json-schema": "^0.51.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts",
"src/**/*.js"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"cobertura"
],
"report-dir": "./tests_artifacts",
"all": true
}
}