-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "deep-state-observer",
"version": "5.5.17",
"description": "Deep state observer is an state management library that will fire listeners only when specified object node (which also can be a wildcard) was changed.",
"main": "index.esm.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"build": "npm run types && rollup -c",
"types": "tsc -d index.ts --downlevelIteration && cp index.d.ts index.umd.d.ts && cp index.d.ts index.cjs.d.ts && cp index.d.ts index.esm.d.ts",
"test": "node --max-old-space-size=8192 node_modules/jasmine/bin/jasmine.js --config=./jasmine.json",
"bench": "node benchmark.js",
"bench:chrome": "node --inspect-brk benchmark.js",
"dev": "node node_modules/rollup/dist/bin/rollup -c fast.config.js -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neuronetio/deep-state-observer.git"
},
"keywords": [
"deep state observer",
"deep state",
"deep store",
"svelte",
"react",
"vue",
"angular",
"deep",
"store",
"observer",
"subscribe",
"svelte",
"deep",
"store",
"svelte",
"deep",
"observer",
"svelte",
"deep",
"subscribe"
],
"author": "neuronet.io@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/neuronetio/deep-state-observer/issues"
},
"homepage": "https://github.com/neuronetio/deep-state-observer#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-sucrase": "^4.0.1",
"@rollup/plugin-typescript": "^12.3.0",
"benchmark": "^2.1.4",
"jasmine": "^4.2.1",
"loglevel": "^1.6.4",
"prettier": "^2.0.5",
"rollup": "^2.3.1",
"tslib": "^1.10.0",
"typescript": "^4.4.3"
}
}