-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.31 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
47
48
49
{
"name": "dom-factory",
"version": "1.1.0",
"description": "Enhance HTML elements using plain JavaScript objects.",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c --watch"
},
"main": "dist/dom-factory.common.js",
"module": "dist/dom-factory.esm.js",
"browser": "dist/dom-factory.js",
"author": "Laza Bogdan <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.28.2",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"watch-object": "^1.1.2"
},
"dependencies": {
"core-js": "^3.6.5"
},
"keywords": [
"dom",
"html",
"factory",
"javascript",
"object",
"htmlelement",
"component",
"observer",
"reflection"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FrontendMatter/dom-factory.git"
},
"bugs": {
"url": "https://github.com/FrontendMatter/dom-factory/issues"
},
"homepage": "https://github.com/FrontendMatter/dom-factory#readme"
}