-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 846 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": "emitonoff",
"version": "0.1.0",
"description": "Extremely simple event emitter",
"main": "index.js",
"scripts": {
"js": "browserify . --standalone emitonoff -o dist/emitonoff.js && uglifyjs dist/emitonoff.js -o dist/emitonoff.min.js",
"release": "npm run js && release-it",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/konsumer/emitonoff.git"
},
"keywords": [
"event",
"pubsub"
],
"author": {
"name": "David Konsumer",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/konsumer/emitonoff/issues"
},
"homepage": "https://github.com/konsumer/emitonoff",
"devDependencies": {
"browserify": "^16.2.3",
"jest": "^24.7.1",
"release-it": "^12.0.0",
"uglify-js": "^3.5.10"
}
}