forked from presenta-software/presenta-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
52
53
54
55
56
57
58
59
{
"name": "@presenta/lib",
"homepage": "https://lib.presenta.cc",
"version": "0.1.2",
"description": "Build presentations, the modern way.",
"main": "src/index.js",
"unpkg": "dist/presenta.min.js",
"module": "dist/presenta.min.js",
"scripts": {
"start": "rollup -c --watch",
"build": "rollup -c",
"bump": "npm run build && git add -u && git commit -m \"bump release\" && npm version patch && git push && npm publish && cd ../ && node starterkit.js"
},
"keywords": [
"presentation",
"slides",
"blocks",
"modern",
"library"
],
"author": {
"name": "Fabio Franchino",
"email": "[email protected]",
"web": "https://fabiofranchino.com"
},
"repository": {
"type": "git",
"url": "git://github.com/presenta-software/presenta-lib.git"
},
"bugs": {
"url": "https://github.com/presenta-software/presenta-lib/issues"
},
"engines": {
"node": ">=12.0.0"
},
"globals": {
"module": false,
"console": false,
"exports": false
},
"browserslist": "> 0.5%, IE 11, not dead",
"license": "BSD-3-Clause",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"autoprefixer": "^9.8.0",
"cssnano": "^4.1.10",
"node-sass": "^4.14.1",
"rollup": "^2.29.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^6.1.0",
"standard": "^14.3.4"
}
}