-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "callbag-websocket",
"version": "1.0.2",
"description": "👜 Callbag source factory from WebSocket.",
"main": "dist/callbag-websocket.js",
"module": "dist/callbag-websocket.es.js",
"files": [
"dist"
],
"scripts": {
"pretest": "npm run build",
"test": "jest",
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lwojciechowski/callbag-websocket.git"
},
"keywords": [
"callbag",
"callbags",
"sample"
],
"author": "Łukasz Wojciechowski <[email protected]> (https://github.com/lwojciechowski)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lwojciechowski/callbag-websocket/issues"
},
"homepage": "https://github.com/lwojciechowski/callbag-websocket#readme",
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"@babel/preset-env": "7.0.0-beta.42",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^4.0.0-beta.3"
},
"dependencies": {}
}