-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "waveql",
"version": "1.8.2",
"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.12.0",
"@codemirror/commands": "6.3.3",
"@codemirror/language": "6.10.7",
"@codemirror/state": "6.4.0",
"@codemirror/view": "6.23.0",
"@lezer/highlight": "1.2.1"
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"browserify": "^17.0.0",
"chai": "^4.5.0",
"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/node12"
}
}