-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
45 lines (45 loc) · 1.22 KB
/
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
38
39
40
41
42
43
44
45
{
"name": "react-localstorage",
"version": "1.0.0",
"description": "A mixin for automatically synchronizing a component's state with localStorage.",
"main": "react-localstorage.js",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/STRML/react-localstorage.git"
},
"keywords": [
"react",
"localstorage"
],
"author": "Samuel Reed <[email protected]> (http://strml.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/STRML/react-localstorage/issues"
},
"homepage": "https://github.com/STRML/react-localstorage",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^25.2.6",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.6.1",
"jest": "^25.2.7",
"jest-localstorage-mock": "^2.2.0",
"pre-commit": "^1.2.2",
"react": "^16",
"react-dom": "^16",
"react-mixin": "^5.0.0",
"regenerator-runtime": "^0.13.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {}
}