-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "socket-packet",
"version": "0.2.1",
"description": "A nodejs library to wrap TCP/UDP packets between a server and client",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npx babel ./src -d ./lib",
"coverage": "npx nyc --reporter=html --reporter=text --reporter=text-lcov --reporter=lcov npm test | npx codacy-coverage --token=$CODACY_PROJECT_TOKEN --projectName=socket-packet",
"prepublishOnly": "npm run tc && npm run build",
"pretest": "(npx standard | npx snazzy) && npx eslint ./src",
"report": "npx nyc npm test",
"tc": "npm run test-with-coverage",
"test": "NODE_ENV=test npx mocha ./test/",
"test-with-coverage": "npm run report && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gavinvangent/socket-packet.git"
},
"keywords": [
"socket",
"tcp",
"udp",
"packet"
],
"author": "Gavin van Gent",
"license": "MIT",
"bugs": {
"url": "https://github.com/gavinvangent/socket-packet/issues"
},
"homepage": "https://github.com/gavinvangent/socket-packet#readme",
"dependencies": {
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"assert": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"codacy-coverage": "^3.0.0",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"nyc": {
"require": [
"babel-core/register"
],
"sourceMap": false,
"instrument": true,
"include": [
"src/**/*.js"
],
"cache": true,
"watermarks": {
"lines": [
95,
100
],
"functions": [
95,
100
],
"branches": [
95,
100
],
"statements": [
95,
100
]
}
},
"pre-commit": [
"report"
],
"standard": {
"env": [
"mocha"
],
"parser": "babel-eslint"
}
}