-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.15 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
{
"name": "clientchannel",
"version": "0.38.2",
"description": "Persist objects and sync them between tabs via IndexedDB or LocalStorage.",
"private": true,
"homepage": "https://github.com/falsandtru/clientchannel",
"repository": {
"type": "git",
"url": "https://github.com/falsandtru/clientchannel"
},
"keywords": [
"indexeddb",
"webstorage",
"localstorage",
"broadcastchannel",
"orm",
"dao",
"store",
"eventstore",
"eventsourcing"
],
"types": "./index.d.ts",
"main": "./dist/index.js",
"files": [
"dist",
"index.*",
"src",
"test",
"*.ts",
"*.js",
"*.json",
"*.map",
"*.md",
"NOTICE",
"LICENSE"
],
"dependencies": {
"spica": "0.0.761"
},
"devDependencies": {
"@types/mocha": "10.0.3",
"@types/power-assert": "1.5.10",
"@typescript-eslint/parser": "^6.10.0",
"babel-loader": "^9.1.3",
"babel-plugin-unassert": "^3.2.0",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-plugin-redos": "^4.4.5",
"eslint-webpack-plugin": "^4.0.1",
"glob": "^10.3.10",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-power-assert": "^1.0.0",
"mocha": "^10.2.0",
"npm-check-updates": "^16.14.6",
"semver": "^7.5.4",
"ts-loader": "^9.5.0",
"typescript": "5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"scripts": {
"update": "ncu -u && npm i --no-shrinkwrap && bundle update",
"dev": "concurrently \"webpack --env mode=test -w\" \"karma start --auto-watch\" \"webpack --env mode=dist -w --output-path ./gh-pages/assets/dist\" \"bundle exec jekyll serve -s ./gh-pages -d ./gh-pages/_site --incremental\"",
"test": "webpack --env mode=test && karma start --single-run --concurrency 1 --reporters dots,coverage",
"lint": "webpack --env mode=lint",
"bench": "webpack --env mode=bench && karma start --single-run --concurrency 1",
"dist": "webpack --env mode=dist"
},
"author": "falsandtru",
"license": "(Apache-2.0 AND MPL-2.0)"
}