1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/addon-sdk/source/lib/method/package.json Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +{ 1.5 + "name": "method", 1.6 + "id": "method", 1.7 + "version": "1.0.2", 1.8 + "description": "Functional polymorphic method dispatch", 1.9 + "keywords": [ 1.10 + "method", 1.11 + "dispatch", 1.12 + "protocol", 1.13 + "polymorphism", 1.14 + "type dispatch" 1.15 + ], 1.16 + "author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)", 1.17 + "homepage": "https://github.com/Gozala/method", 1.18 + "main": "./core.js", 1.19 + "repository": { 1.20 + "type": "git", 1.21 + "url": "https://github.com/Gozala/method.git", 1.22 + "web": "https://github.com/Gozala/method" 1.23 + }, 1.24 + "bugs": { 1.25 + "url": "http://github.com/Gozala/method/issues/" 1.26 + }, 1.27 + "devDependencies": { 1.28 + "test": "~0.x.0", 1.29 + "repl-utils": "~2.0.1", 1.30 + "phantomify": "~0.1.0" 1.31 + }, 1.32 + "scripts": { 1.33 + "test": "npm run test-node && npm run test-browser", 1.34 + "test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/browser.js", 1.35 + "test-node": "node ./test/common.js", 1.36 + "repl": "node node_modules/repl-utils" 1.37 + }, 1.38 + "licenses": [ 1.39 + { 1.40 + "type": "MIT", 1.41 + "url": "https://github.com/Gozala/method/License.md" 1.42 + } 1.43 + ] 1.44 +}