-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "offline-browser-pub-sub",
"description": "Pub-sub system using the browsers local storage to send messages between tabs offline",
"repository": "https://github.com/olerichter00/offline-browser-pub-sub.git",
"homepage": "https://github.com/olerichter00/offline-browser-pub-sub.git",
"keywords": [
"pub",
"sub",
"pubsub",
"browser",
"offline",
"localstorage"
],
"author": "Ole Richter <ole.richter91@gmail.com>",
"version": "1.0.9",
"files": [
"lib/*"
],
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"serve": "webpack --config webpack.config-dev.js && serve example",
"dev": "npm-watch",
"test": "jest",
"test:watch": "jest --watch",
"build": "babel src --out-dir lib",
"prepare": "yarn test && yarn run build"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"watch": {
"serve": {
"patterns": [
"src"
],
"extensions": "js,html"
}
},
"jest": {
"setupFiles": [
"./jest.setup.js"
]
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"npm-watch": "^0.6.0",
"serve": "^11.3.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"uuid": "^8.1.0"
}
}