-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "simple-udp-stream",
"version": "1.2.4",
"description": "Writable stream over UDP",
"keywords": [
"udp",
"stream",
"bunyan",
"logstash"
],
"author": "Dimitri del Marmol",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover --report html node_modules/.bin/_mocha",
"doc": "jsdoc -d doc .",
"lint": "eslint *.js test/*.js",
"report": "plato -l .jshintrc -d report *.js test/*.js",
"audit": "nsp check",
"upgrade-dependencies": "ncu -ua && npm i",
"prepare-release": "npm test && npm run lint && npm run audit",
"publish-release": "git push && git push --tags && npm publish",
"patch-release": "npm run prepare-release && npm version patch && npm run publish-release",
"minor-release": "npm run prepare-release && npm version minor && npm run publish-release",
"major-release": "npm run prepare-release && npm version major && npm run publish-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ddm/simple-udp-stream.git"
},
"eslintConfig": {
"env": {
"node": true,
"mocha": true
}
},
"dependencies": {
"underscore": "^1.13.6"
},
"devDependencies": {
"bunyan": "^1.8.15",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"istanbul": "^0.4.5",
"jsdoc": "^4.0.0",
"mocha": "^10.2.0",
"npm-check-updates": "^16.6.3",
"nsp": "^3.2.1",
"plato": "^1.7.0"
}
}