-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc1c5fb
commit 7ff7ef3
Showing
1 changed file
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
{ | ||
"name": "knot.js", | ||
"version": "1.1.1", | ||
"description": "A browser-based event emitter, for tying things together.", | ||
"homepage": "https://github.com/callmecavs/knot.js", | ||
"main": "dist/knot.min.js", | ||
"jsnext:main": "src/knot.js", | ||
|
||
"author": "Michael Cavalea", | ||
"main": "dist/knot.js", | ||
"module": "dist/knot.module.js", | ||
"jsnext:main": "dist/knot.module.js", | ||
|
||
"version": "1.1.2", | ||
"license": "MIT", | ||
|
||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/callmecavs/knot.js" | ||
"repository": "callmecavs/knot.js", | ||
|
||
"author": { | ||
"name": "Michael Cavalea", | ||
"email": "[email protected]", | ||
"url": "http://callmecavs.com/" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/callmecavs/knot.js/issues" | ||
|
||
"scripts": { | ||
"prebuild": "eslint src", | ||
"build": "rollup -c", | ||
"dev": "rollup -c -w -m inline", | ||
"prepublish": "npm run build", | ||
"server": "python -m SimpleHTTPServer 3000" | ||
}, | ||
|
||
"keywords": [ | ||
|
@@ -24,16 +32,16 @@ | |
], | ||
|
||
"devDependencies": { | ||
"babel-preset-es2015-rollup": "*", | ||
"babel-plugin-transform-object-rest-spread": "*", | ||
"browser-sync": "*", | ||
"del": "*", | ||
"gulp": "*", | ||
"node-notifier": "*", | ||
"rollup": "*", | ||
"rollup-plugin-babel": "*", | ||
"rollup-plugin-commonjs": "*", | ||
"rollup-plugin-node-resolve": "*", | ||
"rollup-plugin-uglify": "*" | ||
"babel-eslint": "^7.1.1", | ||
"babel-plugin-external-helpers": "^6.18.0", | ||
"babel-preset-es2015-rollup": "^3.0.0", | ||
"babel-preset-stage-0": "^6.16.0", | ||
"eslint": "^3.13.0", | ||
"eslint-config-standard": "^6.2.1", | ||
"eslint-plugin-promise": "^3.4.0", | ||
"eslint-plugin-standard": "^2.0.1", | ||
"rollup": "^0.41.1", | ||
"rollup-plugin-babel": "^2.7.1", | ||
"rollup-watch": "^3.2.2" | ||
} | ||
} |