-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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
{
"name": "redux-select-when-matched",
"description": "resolves a promise with your chosen selection from state when the state allows your predicate to return true",
"version": "0.0.0-semantically-released",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"license": "MIT",
"repository": "GainCompliance/redux-select-when-matched",
"bugs": "https://github.com/GainCompliance/redux-select-when-matched/issues",
"homepage": "https://npm.im/redux-select-when-matched",
"author": "Gain Compliance <> (https://github.com/GainCompliance)",
"scripts": {
"clean": "rimraf lib/",
"lint:js": "eslint . --cache",
"lint:travis": "travis-lint .travis.yml",
"lint:sensitive": "ban",
"lint:peer": "npm ls >/dev/null",
"test": "npm-run-all --print-label --parallel lint:* test:*",
"test:unit:base": "mocha --recursive test/unit",
"test:unit": "nyc run-s test:unit:base",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"generate:readme": "doctoc README.md --entryprefix '*'",
"build": "run-s clean build:*",
"build:js": "rollup -c",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/plugin-external-helpers": "7.14.5",
"@babel/register": "7.14.5",
"@gaincompliance/babel-preset": "4.1.20",
"@gaincompliance/eslint-config": "1.0.33",
"@gaincompliance/eslint-config-mocha": "1.0.10",
"@travi/any": "2.0.16",
"ban-sensitive-files": "^1.9.2",
"chai": "^4.2.0",
"codecov": "3.8.2",
"commitlint-config-gain": "1.0.35",
"cz-conventional-changelog": "3.3.0",
"doctoc": "2.0.1",
"husky": "6.0.0",
"mocha": "7.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"rollup": "^2.0.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"sinon": "11.1.1",
"travis-lint": "^1.0.0"
}
}