-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.09 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@extralam/microui",
"version": "1.0.1",
"description": "A lightweight, modern JavaScript utility library that makes DOM manipulation and event handling simple and efficient.",
"main": "dist/microui.js",
"module": "dist/microui.esm.js",
"types": "dist/microui.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c && npm run build:sizes",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:prod": "rollup -c --environment NODE_ENV:production && npm run build:sizes",
"build:sizes": "node scripts/build-sizes.js",
"build:gzip": "gzip -k dist/microui.min.js && gzip -k dist/microui.esm.js",
"badges": "node scripts/generate-badges.js",
"watch": "rollup -c -w",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"serve": "serve examples -l 3000",
"demo": "python3 -m http.server 8000",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prepare": "npm run build"
},
"keywords": [
"dom",
"javascript",
"utility",
"library",
"vanilla",
"microui",
"ajax",
"events",
"animation"
],
"author": "extralam",
"license": "MIT",
"homepage": "https://lam0819.github.io/MicroUI",
"repository": {
"type": "git",
"url": "git+https://github.com/lam0819/MicroUI.git"
},
"bugs": {
"url": "https://github.com/lam0819/MicroUI/issues"
},
"devDependencies": {
"@babel/core": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"babel-jest": "^29.5.0",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"rollup": "^3.25.0",
"serve": "^14.2.0",
"ts-jest": "^29.1.0"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
]
}