-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 924 Bytes
/
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
{
"name": "ramda-reselect",
"version": "2.0.0",
"description": "Implementation of the reselect library using ramda.",
"keywords": ["react", "redux", "ramda", "reselect"],
"main": "index.js",
"scripts": {
"test": "tape 'tests/**/*.js' | faucet",
"commit": "git-cz"
},
"repository": "git+https://github.com/brookemitchell/ramda-reselect.git",
"author": "bmitchell <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/brookemitchell/ramda-reselect/issues"
},
"homepage": "https://github.com/brookemitchell/ramda-reselect#readme",
"dependencies": {
"ramda": "^0.25.0",
"ramda-extension": "^0.3.1"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"faucet": "0.0.1",
"tape": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}