-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 932 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": "react-cookie",
"version": "0.4.1",
"description": "Load and save cookies within your React application",
"main": "index.js",
"files": [
"index.js",
"dist/react-cookie.js",
"dist/react-cookie.min.js"
],
"repository": {
"type": "git",
"url": "https://github.com/eXon/react-cookie.git"
},
"bugs": "https://github.com/eXon/react-cookie/issues",
"keywords": [
"cookie",
"cookies",
"react",
"reactjs",
"jsx"
],
"author": "Benoit Tremblay <trembl.ben@gmail.com>",
"license": "MIT",
"scripts": {
"build": "mkdir -p dist && browserify index.js > dist/react-cookie.js && uglifyjs dist/react-cookie.js -o dist/react-cookie.min.js",
"test": "node_modules/.bin/minijasminenode2 test.js"
},
"dependencies": {
"cookie": "^0.1.2"
},
"devDependencies": {
"browserify": "^9.0.3",
"minijasminenode2": "^1.0.0",
"uglify-js": "^2.4.17"
}
}