UNPKG

set-cookie

Version:

Set a cookie using the same API on both the client and the server.

38 lines (37 loc) 950 B
{ "name": "set-cookie", "version": "0.0.4", "description": "Set a cookie using the same API on both the client and the server.", "main": "index.js", "scripts": { "test": "mocha", "browserify": "browserify test/browser/index.js -o test/browser/bundle.js --debug", "test-server": "http-server ./test/browser -p 8888 -o", "test-browser": "npm run browserify && npm run test-server" }, "keywords": [ "cookie", "set-cookie", "isomorphic" ], "repository": { "type": "git", "url": "git://github.com/spikebrehm/set-cookie.git" }, "author": "Spike Brehm <ocelot@gmail.com>", "license": "MIT", "dependencies": { "cookie": "^0.1.2" }, "browser": { "./lib/setter/index.js": "./lib/setter/client.js" }, "devDependencies": { "mocha": "^1.20.0", "chai": "^1.9.1", "sinon": "^1.10.0", "superagent": "^0.18.0", "browserify": "^4.1.6", "http-server": "^0.6.1" } }