-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "@jonasrottmann/livedata",
"version": "0.0.11",
"description": "✨ Simple, zero dependency, observable value container. ✨",
"author": {
"name": "Jonas Rottmann",
"url": "https://jonas.codes"
},
"type": "module",
"engines": {
"node": ">=12"
},
"exports": "./dist/livedata.js",
"files": [
"dist/livedata.js",
"*.d.ts"
],
"scripts": {
"clean": "rm -rf dist/",
"prebuild": "npm run clean",
"build": "esbuild index.js --bundle --format=esm --outfile=dist/livedata.js",
"test": "run-s test-*",
"test-unit": "nyc ava",
"test-typings": "tsd"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jonasrottmann/livedata.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jonasrottmann/livedata/issues"
},
"homepage": "https://github.com/jonasrottmann/livedata#readme",
"devDependencies": {
"ava": "4.0.0-alpha.1",
"concat-md": "^0.3.5",
"esbuild": "^0.10.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"tsd": "^0.14.0",
"typescript": "^4.2.3"
},
"keywords": [
"data flow",
"observable",
"reactive",
"state container",
"state management",
"state store",
"state",
"store"
]
}