-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"name": "@hideoutchat/web-sdk",
"version": "0.1.5",
"main": "index.js",
"author": {
"email": "devin@canterberry.cc",
"name": "Devin Canterberry"
},
"license": "MIT",
"scripts": {
"build": "rm -vfR lib && babel --only '**/index.js' --no-comments --compact true --minified --source-maps false --out-dir lib src; cp -vfR package.json yarn.lock README.md LICENSE.md lib/",
"documentation": "rm -fR docs; (cd src; find . -type f -name index.js | xargs jsdoc --destination ../docs --package ../package.json --readme ../README.md)",
"lint": "eslint src",
"test": "nyc --silent --check-coverage --lines 100 --per-file mocha --require @babel/register src/spec.setup.js src/**/spec.js"
},
"dependencies": {
"buffer": "6.0.3",
"regenerator-runtime": "0.13.7",
"sha3": "2.1.4",
"ws": "7.5.0"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"@babel/register": "7.14.5",
"babel-eslint": "10.1.0",
"chai": "4.3.4",
"eslint": "7.29.0",
"eslint-plugin-ante": "1.0.4",
"jsdoc": "3.6.7",
"mocha": "9.0.1",
"nyc": "15.1.0",
"sinon": "11.1.1",
"sinon-chai": "3.7.0"
}
}