forked from thoov/mock-socket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.92 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
{
"name": "@gynzy/mock-socket",
"description": "Javascript mocking library for websockets and socket.io",
"version": "9.0.3-gynzy1",
"license": "MIT",
"author": "Travis Hoover",
"main": "./dist/mock-socket",
"directories": {
"test": "tests"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.js",
"lint": "eslint src tests",
"prepublishOnly": "yarn build",
"test": "ava --serial --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/thoov/mock-socket.git"
},
"keywords": [
"websockets",
"mock",
"mocksocket",
"sockets"
],
"bugs": {
"url": "https://github.com/thoov/mock-socket/issues"
},
"homepage": "https://github.com/thoov/mock-socket",
"dependencies": {
"url-parse": "^1.4.4"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.0.1",
"husky": "^1.3.1",
"jsdom": "^11.5.1",
"lint-staged": "^3.4.1",
"nyc": "^10.3.2",
"prettier": "^1.3.1",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"systemjs": "^0.20.12",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
},
"ava": {
"files": [
"tests/**/*.test.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"eslint",
"git add"
]
},
"volta": {
"node": "10.16.0",
"yarn": "1.17.3"
}
}