-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.93 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
{
"name": "selector-action",
"version": "1.2.0",
"description": "State-aware Redux actions with Reselect syntax.",
"main": "build/selectorAction.js",
"scripts": {
"pretest": "npm run clean && npm run --silent lint && npm run build",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/*.js",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"tests-only": "mocha",
"test": "npm run tests-only",
"lint": "eslint . && prettier --check \"{src,test}/**/*.js\"",
"prettier": "prettier --write \"{src,test}/**/*.js\"",
"build": "mkdirp build && babel src --out-dir build --source-maps && npm run build:middleware",
"build:middleware": "babel src/middleware.js --out-file middleware.js --source-maps",
"prepublish": "npm run build",
"clean": "rimraf build && rimraf coverage && rimraf middleware.js{,.map}"
},
"repository": {
"type": "git",
"url": "git://github.com/sibnerian/selector-action.git"
},
"keywords": [
"redux",
"react",
"selector",
"action"
],
"author": "Ian Sibner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sibnerian/selector-action/issues"
},
"homepage": "https://github.com/sibnerian/selector-action#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"babel-plugin-istanbul": "^5.1.4",
"babel-preset-airbnb": "^4.0.0",
"chai": "^3.5.0",
"coveralls": "^3.0.1",
"cross-env": "^5.0.1",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rimraf": "^2.5.4",
"sinon": "^2.3.6",
"sinon-chai": "^2.11.0"
},
"dependencies": {}
}