-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 793 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 793 Bytes
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
{
"name": "@refetty/react",
"version": "1.0.0-rc.12",
"license": "MIT",
"scripts": {
"lint": "prettier \"src/**/*.{js,jsx,ts,tsx}\" --write",
"dev": "microbundle watch --target browser",
"build": "microbundle build --target browser"
},
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.js",
"files": [
"dist/",
"package.json",
"README.md"
],
"author": {
"name": "Bruno Bertolini",
"email": "dev@brunobertolini.com",
"url": "http://brunobertolini.com"
},
"repository": {
"type": "git",
"url": "https://github.com/brunobertolini/refetty"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@refetty/async": "^1.0.0-rc.11"
},
"peerDependencies": {
"react": "16.7.0-alpha.2"
}
}