-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.92 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.92 KB
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
{
"name": "socketbox",
"version": "0.8.2",
"description": "Socketbox is real time socket layer framework inspired by express",
"main": "dist/socketbox.js",
"scripts": {
"test": "mocha -s 0 --exit -t 10000 -b --require babel-core/register test/* --inspector",
"cov": "rm -rf coverage && node_modules/.bin/nyc --require babel-core/register node_modules/.bin/mocha --exit -b -t 10000 test/**/*.js",
"build": "rm -rf dist/* && NODE_ENV=prod webpack",
"build:dev": "rm -rf dist/* && NODE_ENV=dev webpack",
"report": "node_modules/.bin/nyc report --reporter=lcov",
"prepublish": "npm run build"
},
"author": "omer demircan <demircanomer91@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=7"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.39",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.64.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-node-externals": "^1.6.0",
"ws": "^4.1.0"
},
"dependencies": {
"path-to-regexp": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/omeroot/socketbox"
}
}