-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 930 Bytes
/
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
{
"name": "yaj-sse",
"version": "0.3.0",
"description": "Yaj Plugin for Server-Sent Events (SSE) EventSource Polyfill",
"main": "yaj-sse.js",
"directories": {
"example": "examples"
},
"scripts": {
"minify-yaj": "./node_modules/.bin/uglifyjs --compress 'drop_console,drop_debugger' --mangle -o yaj-sse.min.js yaj-sse.js",
"minify": "npm run minify-yaj",
"publish-patch": "npm run minify-yaj && git add yaj-*.min.* && git commit -m 'minify' && npm version patch && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/byjg/yaj-sse.git"
},
"keywords": [
"server-sent events",
"sse",
"yaj",
"eventsource",
"event-source",
"polyfill"
],
"author": "João Gilberto Magalhães",
"license": "MIT",
"bugs": {
"url": "https://github.com/byjg/yaj-sse/issues"
},
"dependencies": {
"yaj": "^1.0.1"
}
}