-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "re-re-reselect",
"version": "0.0.1",
"description": "Go one level deeper by further enhancing the performance of your selectors that are already being enhance-memoized by re-reselect wrapping reselect's selector memoization.",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d ./lib --source-maps",
"lint": "eslint src/",
"test": "jest"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goldhand/re-re-reselect.git"
},
"keywords": [],
"author": "Will Farley <[email protected]> (https://goldhand.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/goldhand/re-re-reselect/issues"
},
"homepage": "https://github.com/goldhand/re-re-reselect#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.0.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "4"
}
}
]
],
"plugins": [
"add-module-exports"
],
"ignore": [
"./src/**/*.spec.js"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"jest": true,
"node": true,
"es6": true
}
}
}