mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "emitify",
|
|
"version": "2.1.1",
|
|
"description": "dead simple event emitter",
|
|
"main": "lib/emitify.js",
|
|
"scripts": {
|
|
"test": "tape test/*.js",
|
|
"jscs": "jscs --esnext lib test",
|
|
"jshint": "jshint lib test",
|
|
"codestyle": "redrun jshint jscs",
|
|
"coverage": "nyc npm test",
|
|
"report": "nyc report --reporter=text-lcov | coveralls",
|
|
"bundle:base": "browserify -s Emitify --dg false",
|
|
"bundle": "npm run bundle:base -- -r ./lib/emitify.js:emitify ./lib/emitify.js -o dist/emitify.js",
|
|
"minify": "minify dist/emitify.js > dist/emitify.min.js",
|
|
"build": "redrun bundle minify",
|
|
"wisdom": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/coderaiser/emitify.git"
|
|
},
|
|
"keywords": [
|
|
"event",
|
|
"emitter"
|
|
],
|
|
"author": "coderaiser <mnemonic.enemy@gmail.com> (http://coderaiser.github.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/coderaiser/emitify/issues"
|
|
},
|
|
"homepage": "https://github.com/coderaiser/emitify",
|
|
"devDependencies": {
|
|
"browserify": "^13.0.0",
|
|
"coveralls": "^2.11.6",
|
|
"jscs": "^3.0.3",
|
|
"jshint": "^2.8.0",
|
|
"minify": "^2.0.2",
|
|
"nyc": "^7.0.0",
|
|
"redrun": "^5.0.1",
|
|
"tape": "^4.4.0"
|
|
},
|
|
"dependencies": {}
|
|
}
|