forked from starandtina/tinyapp-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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": "tinyapp-redux",
"version": "1.2.4",
"description": "Tinyapp bindings for Redux",
"main": "./lib/index.js",
"module": "./es/index.js",
"author": "starandtina <[email protected]>",
"files": [
"es",
"lib",
"src"
],
"keywords": [
"tinyapp",
"mini",
"redux"
],
"scripts": {
"lint": "eslint src",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "yarn build:commonjs && yarn build:es",
"clean": "rimraf lib dist es coverage",
"prepublish": "yarn clean && yarn build",
"prepush": "yarn lint"
},
"peerDependencies": {
"react": "^16.0.0-0",
"redux": "^4.0.0-0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.56",
"@babel/core": "7.0.0-beta.56",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.56",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.56",
"@babel/preset-env": "7.0.0-beta.56",
"babel-eslint": "^8.2.6",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "17.0.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"husky": "0.14.3",
"redux": "^4.0.0",
"rimraf": "^2.6.2"
},
"bugs": {
"url": "https://github.com/starandtina/tinyapp-redux/issues"
},
"homepage": "https://github.com/starandtina/tinyapp-redux",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:starandtina/tinyapp-redux.git"
}
}