-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 839 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 839 Bytes
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
{
"name": "build-pubsub",
"version": "1.0.0",
"description": "simple package to learn and use how pubsub works",
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist",
"test": "mocha src/test.js"
},
"keywords": [
"pubsub",
"learn pubsub",
"publish",
"subscribe",
"learning",
"pubsub in browser",
"publisher-subscriber"
],
"author": "Ajaykumar Prathap",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"sinon": "^7.5.0"
},
"homepage": "https://github.com/pajaydev/how-pubsub-works"
}