-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "odom",
"version": "1.1.1",
"description": "A JavaScript framework for building user interfaces.",
"main": "dist/main.js",
"files": [
"dist",
"src"
],
"directories": {
"src": "src"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.4",
"babel-loader": "^8.2.2",
"eslint": "^7.28.0",
"prettier": "^2.3.0",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"dev": "NODE_ENV=development webpack serve",
"build": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riu-web/odom.git"
},
"keywords": [
"javascript",
"framework",
"library",
"component",
"ui"
],
"author": "Mishieck Mwale",
"license": "MIT",
"bugs": {
"url": "https://github.com/riu-web/odom/issues"
},
"homepage": "https://github.com/riu-web/odom#readme"
}