-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "@omarefg/miru",
"version": "0.0.4",
"description": "Miru is a lightweight library that allows you to create reactive components using vanilla javascript",
"main": "lib/index.js",
"private": false,
"scripts": {
"publish": "npm publish --access=public",
"transpile": "NODE_ENV=production && rm -rf ./lib && mkdir lib && npx babel src/ --out-dir lib --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omarefg/miru.git"
},
"keywords": [
"react",
"angular",
"vue",
"vanilla",
"course",
"lab",
"webdevelopment",
"web",
"development"
],
"author": "Omar Flores <dev@omarefg.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/omarefg/miru/issues"
},
"homepage": "https://github.com/omarefg/miru#readme",
"dependencies": {
"lodash": "4.17.20"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"eslint": "7.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0"
}
}