-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "define-selectors",
"version": "0.1.1",
"description": "to define selectors ignoring order",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"lint": "eslint -c .eslintrc.js --no-eslintrc --max-warnings 0 ./",
"test": "mocha --require babel-polyfill --compilers js:babel-register",
"test:watch": "node_modules/.bin/nodemon --exec 'node_modules/.bin/mocha --require babel-polyfill --compilers js:babel-register || exit 1'",
"test:cov": "better-npm-run test:cov",
"compile:commonjs": "better-npm-run compile:commonjs",
"prepublish": "npm run clean && npm run compile:commonjs"
},
"betterScripts": {
"test:cov": {
"command": "nyc --reporter=lcov --reporter=text npm test",
"env": {
"NODE_ENV": "test",
"COVERAGE": "true"
}
},
"compile:commonjs": {
"command": "babel -d lib/ src/",
"env": {
"NODE_ENV": "commonjs"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/b6pzeusbc54tvhw5jgpyw8pwz2x6gs/define-selectors.git"
},
"keywords": [
"reselect",
"re-reselect",
"npm",
"javascript",
"memoize",
"memoized-selectors"
],
"author": "Alfred UC <b6pzeusbc54tvhw5jgpyw8pwz2x6gs@gmail.com> (https://github.com/b6pzeusbc54tvhw5jgpyw8pwz2x6gs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/b6pzeusbc54tvhw5jgpyw8pwz2x6gs/define-selectors/issues"
},
"homepage": "https://github.com/b6pzeusbc54tvhw5jgpyw8pwz2x6gs/define-selectors#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "6",
"babel-plugin-istanbul": "^4.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"better-npm-run": "^0.0.15",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.3.0",
"nodemon": "^1.11.0",
"nyc": "^10.2.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"re-reselect": "^0.4.0",
"reselect": "^3.0.0"
}
}