-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "@rotick/dom-mark",
"version": "1.2.0",
"description": "Add text/HTML as watermark to DOM node, customizable content and style, automatically calculate size and position",
"author": "dongnaebi",
"main": "dist/dom-mark.js",
"module": "src/index.js",
"keywords": [
"watermark",
"dom-mark",
"HTML",
"dom"
],
"scripts": {
"lint": "eslint --ext .js src",
"lint:fix": "eslint --fix --ext .js src",
"build": "npm run lint && rimraf dist && rollup -c ./rollup.config.js",
"pub": "npm publish --access public"
},
"engines": {
"node": "> 14.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-terser": "^0.1.0",
"eslint": "^8.28.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^3.0.2",
"rollup": "^3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rotick/dom-mark.git"
},
"bugs": {
"url": "https://github.com/rotick/dom-mark/issues"
},
"homepage": "https://github.com/rotick/dom-mark#readme",
"license": "MIT"
}