-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "reselect-equality-check-n-parameters",
"version": "0.2.0",
"description": "Only run the equality check on the first [n] arguments when using reselect",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "cross-env NODE_ENV=test karma start",
"build": "cross-env NODE_ENV=build webpack",
"prepublish": "cross-env npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/vespertilian/reselect-equality-check-n-parameters.git"
},
"bugs": {
"url": "https://github.com/vespertilian/reselect-equality-check-n-parameters/issues"
},
"author": "Cameron Batt",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "2.5.43",
"cross-env": "3.1.4",
"jasmine": "2.5.3",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "^2.2.2",
"karma-webpack": "2.0.2",
"reselect": "3.0.1",
"source-map-loader": "0.1.6",
"ts-loader": "2.0.1",
"typescript": "2.2.1",
"webpack": "2.2.1"
},
"peerDependencies": {
"reselect": "3.x"
}
}