forked from pixeleet/react-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 804 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
{
"name": "universal-cookie",
"version": "2.0.7",
"description": "Universal cookies for JavaScript",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/reactivestack/cookies.git"
},
"bugs": "https://github.com/reactivestack/cookies/issues",
"homepage": "https://github.com/reactivestack/cookies/packages/universal-cookie/#readme",
"keywords": [
"universal",
"isomophic",
"cookie"
],
"author": "Benoit Tremblay <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf lib && babel src -d lib --ignore __tests__"
},
"dependencies": {
"cookie": "^0.3.1",
"object-assign": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"rimraf": "^2.6.1"
}
}