-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 KB
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
{
"name": "@youwol/http-clients",
"description": "The library exposes some of YouWol backend services.",
"version": "3.0.2-wip",
"author": "greinisch@youwol.com",
"homepage": "https://github.com/youwol/http-clients#README.md",
"main": "dist/@youwol/http-clients.js",
"types": "src/index.ts",
"scripts": {
"clean": "del-cli dist",
"auto-gen": "python template.py",
"build": "yarn build:dev",
"pre-build": "yarn clean",
"build:dev": "yarn pre-build && webpack --mode development",
"build:prod": "yarn pre-build && webpack --mode production",
"lint-check": "yarn lint-prettier-check && yarn lint-eslint-check",
"lint-prettier-check": "prettier --check ./src",
"lint-eslint-check": "eslint ./src",
"test": "jest -i",
"test-coverage": "jest -i --collect-coverage",
"doc": "typedoc",
"publish-npm-public": "yarn build:prod && yarn test-coverage && yarn publish --access public"
},
"prettier": "@youwol/prettier-config",
"eslintConfig": {
"extends": [
"@youwol"
]
},
"dependencies": {
"rxjs": "^7.5.6",
"@youwol/http-primitives": "^0.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.11.19",
"@types/webpack": "^5.28.0",
"@youwol/eslint-config": "^1.2.1",
"@youwol/jest-preset": "^1.2.1",
"@youwol/prettier-config": "^1.2.1",
"@youwol/tsconfig": "^1.2.1",
"del-cli": "^5.1.0",
"isomorphic-fetch": "^3.0.0",
"ts-loader": "9.5.0",
"ts-node": "10.9.2",
"tsx": "4.7.1",
"typedoc": "^0.25.7",
"typescript": "5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "5.1.4",
"adm-zip": "0.5.9"
},
"webpm": {
"dependencies": {
"rxjs": "^7.5.6",
"@youwol/http-primitives": "^0.2.0"
},
"aliases": []
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}