-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
65 lines (65 loc) · 2.01 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": "memoize-state",
"version": "2.0.15",
"description": "A magic memoization function",
"main": "dist/es5/index.js",
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "memoize-state.d.ts",
"scripts": {
"test": "npm run test:pick -- '_tests/**/*spec.js'",
"test:perf": "npm run test:pick -- '_tests/**/*perf.js'",
"test:report": "nyc report --reporter=text-lcov > coverage.lcov",
"test:cov": "BABEL_ENV=cjs nyc mocha --compilers js:@babel/register --report lcovonly -- '_tests/**/*spec.js'",
"test:ci": "npm run test:cov && npm run test:report",
"test:pick": "BABEL_ENV=cjs mocha --compilers js:@babel/register",
"build:cjs": "NODE_ENV=cjs babel src -d dist/es5",
"build:es5": "NODE_ENV=es2015 babel src -d dist/es2015",
"build": "rm -Rf ./dist && yarn build:es5 && yarn build:cjs",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"size": "npm run build && size-limit"
},
"keywords": [
"proxy",
"memoize",
"memoization",
"mapStateToProps",
"mobx",
"state"
],
"author": "Anton Korzunov (thekashey@gmail.com)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"eslint": "^4.18.0",
"fast-memoize": "^2.3.0",
"lodash.memoize": "^4.1.2",
"memoize-one": "^5.0.4",
"mocha": "^5.2.0",
"nyc": "^12.0.1",
"proxy-polyfill": "^0.3.0",
"sinon": "^5.0.10",
"size-limit": "^0.21.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/memoize-state.git"
},
"bugs": {
"url": "https://github.com/theKashey/memoize-state/issues"
},
"homepage": "https://github.com/theKashey/memoize-state#readme",
"dependencies": {
"function-double": "^1.0.4",
"proxyequal": "^2.1.0"
}
}