-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "reselect-map",
"version": "1.0.6",
"description": "Selectors for mapping over collections.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"compile": "babel -d lib/ src/ && ncp ./src/index.d.ts ./lib/index.d.ts",
"format": "prettier --write \"{src,test,typescript_test}/**/*.{js,ts}\" README.md",
"prepare": "npm run compile",
"test": "jest /test/",
"test:typescript": "typings-tester --dir typescript_test"
},
"keywords": [
"react",
"redux",
"reselect"
],
"repository": {
"type": "git",
"url": "https://github.com/HeyImAlex/reselect-map.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^26.6.3",
"immutable": "^3.8.1",
"jest": "^26.6.3",
"ncp": "^2.0.0",
"prettier": "^2.2.1",
"reselect": "4.0.0",
"typescript": "^4.1.2",
"typings-tester": "^0.3.2"
},
"peerDependencies": {
"reselect": "2.x || 3.x || 4.x"
}
}