-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "simple-observable-proxy",
"version": "2.0.0",
"description": "Simple observable ES6 proxy.",
"browser": "dist/simple-observable-proxy.js",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup --config",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleph1/simple-observable-proxy.git"
},
"keywords": [
"observable",
"observe",
"proxy",
"proxies",
"reactive",
"signal",
"signals",
"state",
"store",
"typescript",
"es6"
],
"author": {
"name": "Daniel Barber / Aleph1 Technologies Inc.",
"url": "https://aleph-1.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aleph1/simple-observable-proxy/issues"
},
"homepage": "https://github.com/aleph1/simple-observable-proxy#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/parser": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^27.5.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.8.4",
"rollup": "^3.19.1",
"rollup-plugin-prettier": "^3.0.0",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.9.5"
}
}