-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@miroculus/anaconda-chunks-transfer",
"version": "4.0.0",
"description": "Create chunks from a string or buffer for wire-transfer",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js test/**/*.js",
"test:watch": "nodemon --exec npm run test",
"coverage-report": "npm test && nyc report --reporter=html",
"docs": "documentation build index.js -f html -o docs",
"standard": "standard",
"standard:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miroculus/anaconda-chunks-transfer.git"
},
"keywords": [
"buffer",
"string",
"chunks",
"parts",
"transfer",
"stream"
],
"author": "mjlescano",
"license": "MIT",
"bugs": {
"url": "https://github.com/miroculus/anaconda-chunks-transfer/issues"
},
"homepage": "https://github.com/miroculus/anaconda-chunks-transfer#readme",
"devDependencies": {
"documentation": "9.3.1",
"mocha": "6.0.2",
"nodemon": "1.18.10",
"pre-commit": "1.2.2",
"standard": "12.0.1"
},
"precommit.silent": false,
"pre-commit": [
"standard"
],
"dependencies": {}
}