UNPKG

1.73 kBJSONView Raw
1{
2 "name": "reselector",
3 "version": "0.4.0",
4 "description": "",
5 "repository": {
6 "type": "git",
7 "url": "git@github.com:lttb/reselector.git"
8 },
9 "author": "",
10 "license": "MIT",
11 "main": "src/index.js",
12 "scripts": {
13 "clean": "rimraf lib",
14 "prebuild": "npm run clean",
15 "build": "BABEL_ENV=production ./node_modules/.bin/babel src --ignore '**/tests/**' --out-dir lib",
16 "postbuild": "npm run cp:meta",
17 "cp:meta": "copyfiles -e '**/tests/**' package.json README.md 'src/.*' -a -f lib",
18 "test": "BABEL_ENV=test jest",
19 "coveralls": "cat ./coverage/lcov.info | coveralls",
20 "lint": "./node_modules/.bin/eslint .",
21 "preversion": "npm run lint && npm test",
22 "postversion": "git push --follow-tags && npm run build && npm publish lib",
23 "precommit": "lint-staged"
24 },
25 "lint-staged": {
26 "*.js": [
27 "eslint"
28 ]
29 },
30 "devDependencies": {
31 "@lttb/eslint-config-default": "github:lttb/configs#js",
32 "babel-cli": "^6.26.0",
33 "babel-eslint": "^8.0.3",
34 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
35 "babel-preset-env": "^1.6.1",
36 "babel-preset-react": "^6.24.1",
37 "copyfiles": "^1.2.0",
38 "coveralls": "^3.0.0",
39 "enzyme": "^3.2.0",
40 "enzyme-adapter-react-16": "^1.1.1",
41 "enzyme-to-json": "^3.3.0",
42 "eslint": "^4.13.1",
43 "husky": "^0.14.3",
44 "jest": "^22.0.3",
45 "lint-staged": "^6.1.0",
46 "raf": "^3.4.0",
47 "react": "^16.2.0",
48 "react-dom": "^16.2.0",
49 "rimraf": "^2.6.2"
50 },
51 "dependencies": {
52 "babel-core": "^6.26.0",
53 "babel-plugin-syntax-jsx": "^6.18.0",
54 "babel-plugin-transform-flow-strip-types": "^6.22.0",
55 "babel-template": "^6.26.0",
56 "string-hash": "^1.1.3"
57 }
58}