-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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": "@elsci-io/ui-essential",
"version": "1.0.72",
"description": "Material Design components created for products built by elsci.io",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "tsc && webpack",
"test": "mocha \"./test/**/*Test.js\"",
"check-compilation": "echo 'Checking types using tsc' && tsc",
"start": "webpack serve --open --host 0.0.0.0"
},
"keywords": [
"material design"
],
"author": {
"name": "Elsci",
"url": "https://elsci.io"
},
"license": "ISC",
"exports": {
".": "./src/index.js",
"./components": "./src/components.js",
"./styles": "./src/style.scss",
"./bundle.css": "./dist/bundle.css",
"./bundle.js": "./dist/index.bundle.js"
},
"devDependencies": {
"chai": "4.3.7",
"css-loader": "6.7.3",
"html-webpack-plugin": "5.5.3",
"ignore-emit-webpack-plugin": "^2.0.6",
"jsdom": "22.1.0",
"mini-css-extract-plugin": "2.7.5",
"mocha": "10.2.0",
"sass": "1.62.1",
"sass-loader": "13.2.2",
"source-map-loader": "4.0.1",
"style-loader": "3.3.2",
"typescript": "5.1.3",
"webpack": "5.82.1",
"webpack-cli": "5.1.1",
"webpack-dev-server": "4.15.1",
"xhr2": "0.2.1"
}
}