-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
65 lines (65 loc) · 1.64 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
60
61
62
63
64
65
{
"name": "@presenta/lib",
"homepage": "https://lib.presenta.cc",
"version": "1.0.25",
"description": "Build presentations, the modern way.",
"main": "src/index.js",
"unpkg": "dist/presenta.min.js",
"module": "dist/presenta.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 && git push --tags && npm publish"
},
"keywords": [
"presentation",
"slides",
"blocks",
"modern",
"library"
],
"author": {
"name": "Fabio Franchino",
"email": "[email protected]",
"web": "https://www.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": ">=16.0.0"
},
"globals": {
"module": false,
"console": false,
"exports": false
},
"standard": {
"globals": [
"DOMParser"
]
},
"browserslist": "> 0.5%, IE 11, not dead",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.17",
"node-sass": "^7.0.1",
"rollup": "^2.68.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.9",
"standard": "^16.0.4"
}
}