-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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
38
39
40
41
42
43
{
"name": "react-simple-storage",
"version": "1.4.2",
"description": "Simple component and helper functions for using web storage with React.",
"keywords": [
"react, localStorage",
"web storage",
"storage"
],
"main": "build/index.js",
"homepage": "https://ryanjyost.github.io/react-simple-storage-example-project/",
"bugs": {
"email": "ryanjyost@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0"
},
"dependencies": {
"store": "^2.0.12"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanjyost/react-simple-storage"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack"
},
"author": {
"name": "Ryan Yost",
"email": "ryanjyost@gmail.com"
},
"devDependencies": {
"webpack": "^2.6.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0"
}
}