-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "use-colorlab",
"version": "0.1.0",
"description": "",
"main": "dist/use-colorlab.js",
"main:umd": "dist/use-colorlab.umd.js",
"module": "dist/use-colorlab.m.js",
"source": "src/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run lint && rm -rf ./dist",
"dev": "microbundle watch -o ./dist --no-compress --target web --jsx React.createElement",
"build": "microbundle -o ./dist --target web --jsx React.createElement",
"lint": "eslint src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"microbundle": "^0.11.0",
"react": "^16.9.0",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {}
}