This repository was archived by the owner on Jan 9, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "waveql",
"version": "1.9.0",
"description": "Waveform Query Language",
"homepage": "https://github.com/wavedrom/ql#readme",
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/ql.git"
},
"bugs": {
"url": "https://github.com/wavedrom/ql/issues"
},
"main": "./lib",
"unpkg": "waveql.unpkg.min.js",
"files": [
"lib",
"waveql.unpkg.min.js"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "npm run eslint && mocha --inline-diffs test && npm run nyc",
"eslint": "eslint lib test",
"nyc": "nyc -r=lcov -r=text mocha test",
"unpkg": "browserify --standalone waveql lib/index.js > waveql.unpkg.js",
"unpkg.min": "terser --compress --mengle -- waveql.unpkg.js > waveql.unpkg.min.js"
},
"_scripts": {
"prepare": "npm run unpkg && npm run unpkg.min"
},
"dependencies": {
"@codemirror/autocomplete": "6.18.6",
"@codemirror/commands": "6.8.1",
"@codemirror/language": "6.11.2",
"@codemirror/state": "6.4.1",
"@codemirror/view": "6.35.2",
"@lezer/highlight": "1.2.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.13.0",
"browserify": "^17.0.0",
"chai": "^5.2.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"mocha": "^11.0.1",
"nyc": "^17.1",
"onml": "^2.1.0",
"terser": "^5.27.0",
"watchify": "^4.0.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node22"
}
}