forked from StevenDufresne/resocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.37 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "resocket",
"version": "1.1.3",
"description": "A socket.io wrapper and middleware for react and redux apps",
"main": "build/index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 90 --branches 90 --functions 90 --lines 90",
"cover": "nyc npm run test",
"test:watch": "npm run test -- -w",
"test": "mocha test/*.spec.js --compilers js:babel-register",
"test:once": "nyc cover -x *.spec.js _mocha -- test/*.spec.js -R spec --compilers js:babel-register",
"report-coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"lint": "eslint --ext js,jsx src test --fix",
"lint:examples": "eslint --ext js,jsx examples",
"prebuild": "rimraf build",
"build": "babel --copy-files --out-dir build src",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/laumair/resocket.git"
},
"keywords": [
"react",
"redux",
"middleware",
"socket.io"
],
"files": [
"build",
"README.md"
],
"author": "Umair Sarfraz <aquadestructor@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/laumair/resocket/issues"
},
"homepage": "https://github.com/laumair/resocket#readme",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-airbnb": "2.1.1",
"babel-register": "6.16.3",
"chai": "3.5.0",
"commitizen": "2.8.6",
"coveralls": "2.11.14",
"cz-conventional-changelog": "1.2.0",
"eslint": "3.7.0",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"ghooks": "1.3.2",
"lodash.has": "4.5.2",
"lodash.noop": "3.0.1",
"mocha": "3.1.2",
"nyc": "8.3.2",
"redux": "3.6.0",
"redux-mock-store": "1.2.1",
"rimraf": "2.5.4",
"semantic-release": "^4.3.5",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"socket-io-mock": "1.0.1"
},
"dependencies": {
"socket.io-client": "1.5.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
}
}
}