-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "timedstorage",
"version": "1.3.6",
"description": "Localstorage with expirations on data objects by key",
"source": "src/index.js",
"module": "dist/timedstorage.es.js",
"main": "dist/timedstorage.js",
"umd:main": "dist/timedstorage.umd.js",
"scripts": {
"build": "microbundle",
"docs": "documentation readme src/index.js -q --section API && npm run -s fixreadme",
"eslint": "eslint src",
"fixreadme": "node -e 'var fs=require(\"fs\");fs.writeFileSync(\"README.md\", fs.readFileSync(\"README.md\", \"utf8\").replace(/^- /gm, \"- \"))'",
"prepare": "npm t",
"test": "npm run eslint && jest",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"airbnb"
],
"env": {
"browser": true,
"es6": true,
"jest": true
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": true
}
}
]
]
},
"keywords": [
"localstorage",
"JSON",
"expiration",
"timed"
],
"repository": "fuhton/timedstorage",
"author": "Nicholas Smith <fuhton@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"documentation": "^6.1.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.1.4",
"microbundle": "^0.3.1"
}
}