-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
{
"name": "change-tracker",
"version": "1.6.1",
"description": "Object-focused alternative to pub/sub models",
"main": "lib",
"scripts": {
"build": "webpack --mode production",
"build-dev": "webpack --mode development",
"build-browser": "NODE_OPTIONS=force_browser webpack --mode production",
"tsc": "tsc",
"build-all": "tsc && npm run build && npm run build-dev && npm run build-browser",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frostoven/change-tracker.git"
},
"keywords": [
"publisher",
"subscriber",
"subscribe",
"pubsub",
"pub/sub",
"publish/subscribe",
"state",
"state management",
"eventEmitter",
"eventDispatcher",
"dispatcher",
"emit",
"event",
"events",
"emitter",
"addListener",
"action",
"flow",
"reactor",
"trigger",
"on"
],
"author": "aggregate1166877",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-transform-object-assign": "7.16.7",
"@babel/plugin-transform-runtime": "7.16.4",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-stage-2": "7.8.3",
"@babel/preset-typescript": "7.18.6",
"@babel/register": "7.16.0",
"@babel/runtime": "7.20.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"babel-loader": "8.2.3",
"babel-plugin-transform-es2017-object-entries": "0.0.5",
"babel-runtime": "6.26.0",
"binary-loader": "0.0.1",
"jest": "29.7.0",
"ts-jest": "29.1.5",
"webpack": "5.92.1",
"webpack-cli": "5.1.4"
},
"optionalDependencies": {
"win-node-env": "0.6.1"
}
}