-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "@olton/dom",
"title": "Dom",
"description": "DOM - Work with HTML elements, animation HTML elements and props, and ajax routines. JQuery replacer.",
"version": "1.5.1",
"main": "dist/dom.js",
"type": "module",
"types": "types/dom.d.ts",
"files": [
"dist",
"types"
],
"homepage": "https://metroui.org.ua/",
"author": {
"name": "Serhii Pimenov",
"url": "https://pimenov.com.ua",
"email": "serhii@pimenov.com.ua"
},
"repository": {
"type": "git",
"url": "https://github.com/olton/dom.git"
},
"keywords": [
"metroui",
"javascript",
"browser",
"library",
"dom",
"animation",
"replace jquery"
],
"bugs": {
"url": "https://github.com/olton/dom/issues"
},
"license": "MIT",
"scripts": {
"clean": "shx rm -rf dist/* lib/*",
"build": "npm run clean && cross-env NODE_NO_WARNINGS=1 NODE_ENV=production node build.js",
"dev": "npm run clean && cross-env NODE_NO_WARNINGS=1 NODE_ENV=development node build.js",
"pub": "npm run build && npm publish --access public",
"test": "latte --dom --progress=none"
},
"devDependencies": {
"@olton/esbuild-plugin-progress": "^0.3.0",
"cross-env": "^7.0.3",
"esbuild": "^0.25.4",
"esbuild-plugin-replace": "^1.4.0",
"shx": "^0.4.0",
"@olton/latte": "^0.16.2"
},
"dependencies": {
"web-worker": "^1.5.0"
}
}