-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-save-localstorage",
"version": "1.0.0",
"description": "React component to save data to local storage",
"main": "dist/react-save-localstorage.js",
"umd:main": "dist/react-save-localstorage.umd.js",
"module": "dist/react-save-localstorage.mjs",
"source": "src/react-save-localstorage.js",
"files": [
"dist"
],
"scripts": {
"build": "microbundle --jsx=React.createElement",
"dev": "microbundle watch --jsx=React.createElement --compress=false",
"prerelease": "npm run build",
"release": "npm publish --access public",
"lint": "eslint src",
"test": "jest",
"test:ci": "jest --coverage"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"@babel/polyfill",
"jest-localstorage-mock"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonybudianto/react-save-localstorage.git"
},
"keywords": [
"react",
"localstorage"
],
"author": "Antony Budianto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antonybudianto/react-save-localstorage/issues"
},
"homepage": "https://github.com/antonybudianto/react-save-localstorage#readme",
"peerDependencies": {
"react": "16"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/polyfill": "7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "9.1.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.9.0",
"jest-localstorage-mock": "^2.4.0",
"microbundle": "0.7.0",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0"
}
}