-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "@stetsonpierce/simple-cache",
"version": "3.2.0",
"description": "A fast, simple and lightweight expiring key value store for modern browsers.",
"main": "src/index.js",
"directories": {
"src": "src",
"dist": "dist"
},
"scripts": {
"test": "node_modules/jest/bin/jest.js --watch",
"coverage": "node_modules/jest/bin/jest.js --coverage",
"coverage-report": "node_modules/jest/bin/jest.js --coverage && open ./coverage/lcov-report/index.html",
"build": "webpack",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stetsmando/simple-cache.git"
},
"keywords": [
"browser",
"cache",
"simple",
"easy",
"key",
"value",
"store",
"simple-cache"
],
"author": "Stetson Pierce",
"license": "MIT",
"bugs": {
"url": "https://github.com/stetsmando/simple-cache/issues"
},
"homepage": "https://simple-cache.herokuapp.com",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-preset-env": "^1.6.1",
"eslint": "~5.2.0",
"eslint-config-standard": "~11.0.0",
"eslint-plugin-import": "~2.13.0",
"eslint-plugin-jest": "~21.18.0",
"eslint-plugin-node": "~7.0.1",
"eslint-plugin-promise": "~3.8.0",
"eslint-plugin-standard": "~3.1.0",
"jest": "^23.3.0",
"regenerator-runtime": "^0.12.0",
"webpack": "^4.11.0",
"webpack-cli": "^3.0.2"
}
}