-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "bimapcache",
"version": "2.0.0",
"description": "Module for memoizing an individual function or a pair of inverse functions to persistent storage",
"main": "js/index.js",
"sideEffects": false,
"scripts": {
"prepare": "rimraf js && babel -s inline -d js/ src/ --ignore '**/*.test.js' && flow-copy-source -v src js --ignore '*.test.*'",
"test": "yarn run lint && yarn run flow_check && jest && tsc",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/bimapcache.git"
},
"keywords": [
"bimap",
"cache",
"memoize",
"localStorage"
],
"author": "Chris Cowan <agentme49@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StreakYC/bimapcache/issues"
},
"homepage": "https://github.com/StreakYC/bimapcache#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"eslint": "^5.12.0",
"eslint-plugin-flowtype": "^3.2.1",
"flow-bin": "^0.90.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"mock-webstorage": "^1.0.3",
"pdelay": "^2.0.0",
"rimraf": "^2.6.1",
"typescript": "^3.2.2"
}
}