-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 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
{
"name": "@pricingmonkey/tangi",
"version": "4.0.1",
"description": "Lightweight actor library for Web Workers inspired by Akka",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .ts src test",
"build": "tsc",
"clean": "rimraf lib dist",
"test": "mocha 'test/**/*.spec.ts'",
"shipit": "yarn clean && yarn build && yarn lint && yarn test && scripts/publish.sh",
"demo:web-worker": "webpack serve --mode development --host 0.0.0.0 --progress --no-client-overlay-warnings --config demo/webpack.config.js",
"demo:shared-worker": "webpack serve --mode development --host 0.0.0.0 --progress --no-client-overlay-warnings --config demo-shared/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pricingmonkey/tangi.git"
},
"keywords": [
"akka",
"actors",
"message",
"worker",
"web-worker",
"browser"
],
"license": "BlueOak-1.0.0",
"dependencies": {
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/node": "^7.27.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.27.1",
"@sinonjs/fake-timers": "^14.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.31",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"mocha": "^11.0.1",
"rimraf": "^6.0.1",
"typemoq": "^2.1.0",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}