-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "@simonwep/presentr",
"version": "1.2.0",
"description": "Minimalistic and extensible javascript presentation-library.",
"main": "./dist/presentr.min.js",
"author": "Simon Reinisch",
"license": "MIT",
"scripts": {
"build": "webpack --mode production --config webpack.config.prod.js",
"dev": "webpack-dev-server --mode development --config webpack.config.dev.js",
"lint": "eslint ./src --fix"
},
"keywords": [
"presentations",
"presentation",
"js-libray",
"slides",
"slideshow"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-problems": "^3.0.1",
"eslint-loader": "^3.0.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}