-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.35 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
{
"name": "@gullerya/data-tier",
"version": "4.0.0",
"description": "Tiny and fast two way (MV-VM) data binding framework for browser environments.",
"type": "module",
"main": "dist/data-tier.min.js",
"browser": "dist/data-tier.min.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/gullerya/data-tier"
},
"keywords": [
"two",
"way",
"data",
"binding",
"tie",
"model",
"view",
"javascript",
"proxy",
"object",
"observer",
"mutation",
"observe"
],
"author": {
"name": "Guller Yuri",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gullerya/data-tier/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/gullerya/data-tier",
"funding": [
{
"url": "https://paypal.me/gullerya?locale.x=en_US"
},
{
"url": "https://tidelift.com/funding/github/npm/data-tier"
}
],
"scripts": {
"build": "node ./ci/tools/build-dist.js",
"lint": "eslint -c ./ci/.eslintrc.json ./src/*.js ./tests/*.js ./ci/**/*.js",
"test": "node node_modules/just-test/bin/local-runner.js config_file=./tests/configs/tests-config-ci.json"
},
"dependencies": {
"@gullerya/object-observer": "^6.0.4"
},
"devDependencies": {
"eslint": "^8.35.0",
"just-test": "^3.0.4",
"esbuild": "^0.17.10"
},
"publishConfig": {
"access": "public"
}
}