-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 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
48
49
50
{
"name": "@glorious/rasket",
"version": "0.1.3",
"description": "A simple pub-sub implementation",
"main": "dist/rasket.min.js",
"files": [
"dist/**/*.*"
],
"scripts": {
"format": "eslint 'src/**/*.js'",
"build": "webpack",
"start": "http-server -p 9000",
"test": "jest",
"prepublishOnly": "rm -rf ./dist && NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glorious-codes/glorious-rasket.git"
},
"keywords": [
"pubsub",
"publish",
"subscribe",
"listener",
"dispatcher"
],
"author": "Rafael Camargo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glorious-codes/glorious-rasket/issues"
},
"homepage": "https://github.com/glorious-codes/glorious-rasket#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"codecov": "^3.0.4",
"eslint": "^5.6.0",
"http-server": "^14.1.1",
"jest": "^24.9.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"shortid": "^2.2.15"
}
}