UNPKG

feignjs

Version:
56 lines (55 loc) 1.69 kB
{ "name": "feignjs", "version": "0.0.6", "description": "feign for js", "main": "dist/feign.js", "scripts": { "test": "npm run test-cov", "compile": "npm run tsc && npm run browserify && npm run uglify", "test-plain": "node_modules/.bin/nodeunit tests", "test-cov": "node_modules/.bin/istanbul cover testsuite.js && cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js", "tsc": "node_modules/.bin/tsc -d --out dist/feign.js --module commonjs", "browserify": "node_modules/.bin/browserify dist/feign.js -o dist/feign.web.js --s feign --no-bundle-external -t browserify-shim", "uglify": "node_modules/.bin/uglifyjs dist/feign.web.js -o dist/feign.web.min.js", "typedoc": "node_modules/.bin/typedoc --readme none --module commonjs --out docs/ src/" }, "repository": { "type": "git", "url": "git+https://github.com/warmuuh/feignjs.git" }, "keywords": [ "feign", "rest", "descriptive", "client" ], "browserify-shim": { "args-js": "global:Args", "lodash": "global:_", "uri-templates": "global:UriTemplate" }, "author": "Peter Mucha", "license": "MIT", "bugs": { "url": "https://github.com/warmuuh/feignjs/issues" }, "homepage": "https://github.com/warmuuh/feignjs#readme", "dependencies": { "args-js": "^0.10.6", "lodash": "^3.9.3", "uri-templates": "^0.1.7" }, "files": [ "dist" ], "devDependencies": { "typescript": "^1.5.0-beta", "browserify": "^10.2.4", "browserify-shim": "^3.8.8", "codecov.io": "^0.1.2", "istanbul": "^0.3.15", "nodeunit": "^0.9.1", "typedoc": "^0.3.4", "uglify-js": "^2.4.23" } }