-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.41 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
{
"name": "re-select",
"version": "0.5.0",
"description": "Memoized selector library",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --ui tdd --recursive",
"test:cov": "nyc --reporter=text mocha --compilers js:babel-register --ui tdd --recursive",
"compile": "babel -d lib/ src/",
"prepublish": "npm test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theJian/re-select.git"
},
"keywords": [
"react",
"redux",
"select"
],
"author": "theJian<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theJian/re-select/issues"
},
"homepage": "https://github.com/theJian/re-select#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-register": "^6.24.1",
"mocha": "^3.4.2",
"nyc": "^11.4.1"
}
}