-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.37 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
{
"name": "josm-adapter",
"sideEffects": false,
"version": "1.1.1",
"description": "Collection of various adapters for josm.",
"main": "./app/dist/esm/josmAdapter.mjs",
"types": "./app/dist/esm/josmAdapter.d.ts",
"exports": {
"node": {
"import": "./app/dist/esm/josmAdapter.mjs",
"require": "./app/dist/cjs/josmAdapter.js"
},
"default": "./app/dist/esm/josmAdapter.mjs"
},
"scripts": {
"build": "del-cli app/dist && concurrently \"npm run buildESM\" \"npm run buildCJS\" --raw",
"buildESM": "tsc -p ./tsconfig.prod.esm.json && mjsify app/dist esm cjs",
"buildCJS": "tsc -p ./tsconfig.prod.cjs.json && npm run buildCJS2",
"buildCJS2": "rollup --config rollup.node.prod.config.mjs",
"dev": "npm run devNodeWeb",
"devWeb": "concurrently \"rollup --config rollup.web.dev.config.mjs -w\" \"node devServer.mjs\" --raw ",
"devNode": "concurrently \"rollup --config rollup.node.dev.config.mjs -w\" \"wait-on repl/dist/crossPlatformSpecs-repl.js && echo && echo Run \\'npm run repl\\' to run repl.\" --raw",
"devNodeWeb": "concurrently \"rollup --config rollup.web.dev.config.mjs -w\" \"rollup --config rollup.web.devServer.config.mjs -w\" \"node devServerInit.js\" --raw",
"deploy": "npm run build && npm publish",
"repl": "node ./repl/dist/josmAdapter-repl.js",
"start": "npm run repl",
"testBrowser": "npx playwright test",
"buildTest": "rollup --config rollup.node.test.config.mjs",
"test": "npm run buildTest && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/josmAdapter.git"
},
"keywords": [
"josm",
"adapter"
],
"author": "maximilianMairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/josmAdapter/issues"
},
"homepage": "https://github.com/maximilianMairinger/josmAdapter#readme",
"devDependencies": {
"@playwright/test": "^1.41.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/detect-port": "^1.3.5",
"@types/express": "^4.17.21",
"@types/jest": "^26.0.24",
"@types/node": "^20.10.5",
"@types/ws": "^8.5.10",
"body-parser": "^1.20.2",
"builtins": "^5.0.1",
"circ-clone": "^2.7.11",
"circ-json": "^1.0.4",
"concurrently": "^8.2.2",
"del-cli": "^5.1.0",
"detect-port": "^1.5.1",
"esbuild": "0.20.0",
"express": "^4.18.2",
"fast-equals": "^5.0.1",
"isbot": "^3.7.1",
"jest": "^26.6.3",
"jest-expect-ordered": "^1.0.0",
"mjsify": "^2.0.8",
"mongodb": "^6.3.0",
"nodemon": "^3.0.2",
"normalize-ws-url-protocol": "^1.0.1",
"number-to-words": "^1.2.4",
"open": "^7.4.2",
"pug": "^3.0.2",
"rollup": "^3.29.4",
"slugify": "^1.6.6",
"tiny-delay": "^1.2.0",
"tslib": "2.0.0",
"typescript": "^5.3.3",
"wait-on": "^7.2.0",
"webpack-merge": "^5.10.0",
"ws": "^8.15.1"
},
"dependencies": {
"circ-msgpack": "^1.0.0",
"colorful-cli-logger": "^1.0.2",
"commander": "^10.0.1",
"extended-dom": "^4.2.10",
"fast-linked-list": "^3.2.3",
"idb": "^8.0.0",
"josm": "^1.7.45",
"key-index": "^1.7.1",
"mkdirp": "^3.0.1",
"more-maps": "^2.1.0",
"more-proms": "^1.9.5",
"req-package-json": "^2.1.4",
"sanitize-against": "^1.5.4"
}
}