-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "rollup-base-project",
"title": "Rollup Base Project",
"description": "The basic structure to start a JavaScript project with Rollup",
"version": "1.0.0",
"main": "dist/index.min.js",
"module": "dist/index-esm.min.js",
"homepage": "https://github.com/SimplySayHi/rollup-base-project",
"author": {
"email": "[email protected]",
"name": "Valerio Di Punzio",
"url": "https://valeriodipunzio.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SimplySayHi/rollup-base-project.git"
},
"keywords": [
"rollup",
"base",
"project",
"javascript"
],
"bugs": {
"url": "https://github.com/SimplySayHi/rollup-base-project/issues"
},
"license": "MIT",
"scripts": {
"build": "rollup --config"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
},
"customData": {
"libraryNamespace": "RollupTest",
"libraryFileName": "index",
"repository": {
"accountName": "SimplySayHi",
"homepage": "https://github.com/SimplySayHi/rollup-base-project"
}
}
}