-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.52 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
97
98
{
"author": "zbryikt",
"name": "@plotdb/datadom",
"license": "MIT",
"description": "dom serializer / deserializer",
"version": "0.2.0",
"browser": "dist/index.min.js",
"main": "dist/index.min.js",
"files": [
"dist/**/*"
],
"homepage": "https://github.com/plotdb/datadom",
"repository": {
"type": "git",
"url": "https://github.com/plotdb/datadom"
},
"engines": {
"node": ">=10.20.0",
"npm": ">=6.4.1"
},
"scripts": {
"doc": "npx jsdoc -d web/static/doc dist/datadom.js",
"start": "npx lsc server",
"docker-build": "docker-compose -f server/docker/compose.yaml --build",
"db": "docker-compose -f server/docker/compose.yaml up -d db",
"docker-start": "docker-compose -f server/docker/compose.yaml up",
"docker-stop": "docker-compose -f server/docker/compose.yaml down",
"test": "npx mocha --require livescript ./test/index.ls",
"coverage": "npx nyc --reporter=text npm run test"
},
"peerDependencies": {
"@plotdb/json0": "^0.0.5"
},
"devDependencies": {
"@loadingio/bootstrap.ext": "^0.0.9",
"@loadingio/debounce.js": "^1.0.1",
"@loadingio/ldquery": "^3.0.5",
"@plotdb/block": "^5.2.2",
"@plotdb/csscope": "^5.0.3",
"@plotdb/datahub": "^0.5.5",
"@plotdb/json0": "^0.0.5",
"@plotdb/pug-browser": "0.0.3",
"@plotdb/rescope": "^5.0.9",
"@plotdb/sandbox": "^0.0.3",
"@plotdb/srcbuild": "^0.0.67",
"bootstrap": "^4.6.1",
"bootstrap.native": "^3.0.13",
"codemirror": "^5.58.3",
"fedep": "^1.1.11",
"jsdoc": "^4.0.0",
"jsdom": "^16.4.0",
"jsoneditor": "^9.1.1",
"ldcover": "^3.5.2",
"ldiconfont": "^0.2.4",
"ldview": "^1.4.0",
"livescript": "^1.6.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"proxise": "^1.0.1",
"sharedb-wrapper": "^3.1.0",
"@zbryikt/template": "^2.3.45",
"uglify-js": "=3.13.1"
},
"nyc": {
"all": true,
"extension": ".ls",
"require": [
"livescript"
],
"include": [
"src/**/*"
]
},
"frontendDependencies": {
"root": "web/static/assets/lib",
"modules": [
"bootstrap",
"@loadingio/bootstrap.ext",
"bootstrap.native",
"@loadingio/ldquery",
"@loadingio/debounce.js",
"ldview",
"ldcover",
"jsoneditor",
"ldiconfont",
"codemirror",
"sharedb-wrapper",
"proxise",
"@plotdb/datahub",
"@plotdb/sandbox",
"@plotdb/pug-browser",
"@plotdb/block",
"@plotdb/rescope",
"@plotdb/csscope",
"@plotdb/json0"
]
}
}