-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.91 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "reselector",
"version": "0.23.0",
"description": "Use React Components in css selectors",
"repository": {
"type": "git",
"url": "[email protected]:lttb/reselector.git"
},
"author": "",
"license": "MPL-2.0",
"main": "src/index.js",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "BABEL_ENV=production ./node_modules/.bin/babel src --ignore '**/tests/**' --out-dir lib",
"postbuild": "npm run cp:meta",
"cp:meta": "copyfiles -e '**/tests/**' './src/*.d.ts' package.json README.md LICENSE 'src/.*' -a -f lib",
"test": "BABEL_ENV=test jest",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "./node_modules/.bin/eslint .",
"preversion": "npm run lint && npm test",
"postversion": "git push --follow-tags && npm run build && npm publish lib",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@lttb/eslint-config-default": "github:lttb/configs#js",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"copyfiles": "^2.1.1",
"coveralls": "^3.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.2.2",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.4",
"raf": "^3.4.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^3.0.0"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-decorators": "^7.2.0",
"@babel/plugin-syntax-do-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/plugin-syntax-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-syntax-function-bind": "^7.2.0",
"@babel/plugin-syntax-function-sent": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-syntax-numeric-separator": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-pipeline-operator": "^7.5.0",
"@babel/plugin-syntax-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-typescript": "^7.3.3",
"@babel/template": "^7.4.4",
"@babel/types": "^7.5.5",
"core-js": "3.3.0",
"cosmiconfig": "^5.2.1",
"string-hash": "^1.1.3"
},
"greenkeeper": {
"ignore": [
"cosmiconfig"
]
}
}