-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.86 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
{
"name": "reactivefy",
"version": "1.2.4",
"description": "Small collection of buzzling libraries like events publisher & subscribe pattern, and observable & reactive objects library.",
"main": "dist/index.js",
"scripts": {
"test": "mocha ./test --require @babel/register",
"lint": "eslint ./src ./test",
"lint:fix": "eslint --fix ./src ./test",
"clean": "rimraf ./dist",
"build": "npm run clean && babel ./src --out-dir ./dist --copy-files",
"utils:outdated": "npm outdated",
"utils:updates": "ncu",
"utils:upgrades": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brugarolas/reactive.git"
},
"files": [
"dist/events/index.js",
"dist/events/subscription.js",
"dist/helpers/utils.js",
"dist/observables/implementations/full/batcher.js",
"dist/observables/implementations/full/computed.js",
"dist/observables/implementations/full/data.js",
"dist/observables/implementations/full/dispose.js",
"dist/observables/implementations/full/global.js",
"dist/observables/implementations/full/observable.js",
"dist/observables/implementations/full/observe.js",
"dist/observables/implementations/light/computed.js",
"dist/observables/implementations/light/dispose.js",
"dist/observables/implementations/light/global.js",
"dist/observables/implementations/light/ignore.js",
"dist/observables/implementations/light/observe.js",
"dist/observables/implementations/light/utils.js",
"dist/observables/full.js",
"dist/observables/index.js",
"dist/observables/light.js",
"dist/polyfills/array-observe.js",
"dist/polyfills/object-observe.js",
"dist/polyfills/proxy.js",
"dist/utils/negative-arrray.js",
"dist/index.js"
],
"dependencies": {
"@babel/runtime-corejs3": "^7.21.0",
"array.observe": "^0.0.1",
"nanoid": "^4.0.2",
"object.observe": "^0.2.6",
"proxy-polyfill": "^0.3.2"
},
"browserslist": [
">0.25%",
"not dead",
"not IE > 5",
"not android < 5"
],
"keywords": [
"javascript",
"properties",
"computed",
"proxy",
"getter",
"setter",
"emitter",
"emit",
"subscribe",
"observable",
"observe",
"reactive",
"store"
],
"author": "andres-brugarolas",
"license": "GNU v3",
"private": false,
"type": "module",
"bugs": {
"url": "https://github.com/Brugarolas/reactive/issues"
},
"homepage": "https://github.com/Brugarolas/reactive#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"babel-preset-minify": "^0.5.2",
"chai": "^4.3.7",
"eslint": "^8.38.0",
"eslint-config-canonical": "^41.0.1",
"mocha": "^10.2.0",
"npm-check-updates": "^16.10.8",
"rimraf": "^5.0.0"
}
}