-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 989 Bytes
/
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
{
"name": "@1ncounter/watermark",
"version": "1.0.6",
"description": "watermark for website on the page.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/1ncounter/watermark.git"
},
"homepage": "https://github.com/1ncounter/watermark",
"scripts": {
"dev": "rollup -wc",
"build": "rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"test": "jest"
},
"keywords": [
"watermark"
],
"author": "1ncounter",
"license": "MIT",
"files": [
"index.js",
"dist",
"src",
"types"
],
"types": "types/index.d.ts",
"devDependencies": {
"@types/jest": "^24.0.23",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.27.8",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"resize-observer-polyfill": "^1.5.1"
}
}