-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@videsk/rollup-library-template",
"umdName": "MyLibrary",
"version": "1.0.0",
"description": "Template to compile library with Rollup",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"upload": "npm run build && npm publish"
},
"browser": "dist/name-library.min.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/videsk/rollup-library-template.git"
},
"keywords": [
"videsk",
"library"
],
"author": "videsk",
"license": "MIT",
"bugs": {
"url": "https://github.com/videsk/rollup-library-template/issues"
},
"homepage": "https://github.com/videsk/rollup-library-template#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"rollup": "^2.55.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-terser": "^7.0.2"
}
}