-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 938 Bytes
/
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
{
"name": "broglie",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib"
],
"scripts": {
"test": "eslint lib test && nyc -r=text -r=lcov mocha",
"coverage": "nyc report -r=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/broglie.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavedrom/broglie/issues"
},
"homepage": "https://github.com/wavedrom/broglie#readme",
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^17.0.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.14.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"dependencies": {
"ws": "^8.6.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}