-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
50
51
{
"name": "simple-watermark",
"version": "1.0.0",
"description": "A simple watermark for CMS Web page",
"main": "dist/simple-watermark.cjs.js",
"module": "dist/simple-watermark.esm.js",
"unpkg": "dist/simple-watermark.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LeeRayno/simple-watermark.git"
},
"keywords": [
"watermark"
],
"author": "LeeRayno",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeeRayno/simple-watermark/issues"
},
"homepage": "https://github.com/LeeRayno/simple-watermark#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"cz-conventional-changelog": "^2.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"@babel/runtime": "^7.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}