-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 950 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"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 <[email protected]>",
"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"
}
}