-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.22 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
{
"version": "1.9.1",
"name": "boardgamegeekclient",
"description": "Javascript client to interact with BoardGameGeek public XML API",
"author": "learningprocesss",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/LearningProcesss/boardgamegeekjsclient#readme",
"bugs": {
"url": "https://github.com/LearningProcesss/boardgamegeekjsclient/issues"
},
"repository": {
"url": "https://github.com/LearningProcesss/boardgamegeekjsclient",
"type": "git"
},
"keywords": [
"boardgamegeek",
"api client",
"wrapper",
"fully typed",
"typescript"
],
"scripts": {
"start": "echo TODO!",
"build": "yarn run build:ts",
"build:ts": "rm -r -f dist && mkdir dist && yarn run build:ts:cjs && yarn run build:ts:esm && yarn run build:reflection && (sleep 5 && yarn run build:ts:post)",
"build:ts:cjs": "rm -r -f cjs && tsc -p tsconfig.cjs.json --outdir cjs",
"build:ts:esm": "rm -r -f esm && tsc -p tsconfig.esm.json --outdir esm",
"build:ts:post": "cp -r cjs dist && cp -r esm dist && rm -r -f cjs && rm -r -f esm",
"build:reflection": "npx ts-node test/unit/utils/reflection/ReflectionRunner.ts",
"test": "jest --verbose",
"lint": "echo TODO!",
"prepare": "yarn run build:ts",
"tsc:watch": "tsc -w",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"@size-limit/preset-small-lib": "^4.10.0",
"@types/jest": "^27.0.3",
"husky": "^5.1.3",
"jest": "^27.3.1",
"semantic-release": "^17.4.2",
"ts-jest": "^27.0.7",
"typescript": "^4.2.3"
},
"dependencies": {
"fast-xml-parser": "^3.18.0",
"isomorphic-unfetch": "^3.1.0",
"jackson-js": "^1.1.0"
}
}