-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "@pie-dao/if-unless",
"version": "1.0.1",
"description": "Provides two components, If and Unless, for conditional rendering.",
"main": "dist/index.js",
"repository": "https://github.com/pie-dao/if-unless.git",
"author": "Dan Matthews <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn lint && yarn clean && babel src/ -d dist/",
"clean": "rimraf dist",
"lint": "npx eslint src/*.jsx",
"prepublish": "yarn build",
"release": "npm publish --access=public"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-easy-state": "^6.1.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"rimraf": "^3.0.2"
}
}