2012-06-08 05:21:14 +02:00
|
|
|
{
|
2013-02-27 08:26:24 +01:00
|
|
|
"name": "reveal.js",
|
2020-01-29 20:22:42 +01:00
|
|
|
"version": "4.0.0-dev",
|
2013-02-27 08:26:24 +01:00
|
|
|
"description": "The HTML Presentation Framework",
|
2020-03-03 21:01:35 +01:00
|
|
|
"homepage": "https://revealjs.com",
|
2013-03-08 01:51:58 +01:00
|
|
|
"subdomain": "revealjs",
|
2015-03-14 20:05:05 +01:00
|
|
|
"main": "js/reveal.js",
|
2020-03-03 21:01:35 +01:00
|
|
|
"license": "MIT",
|
2013-03-08 01:51:58 +01:00
|
|
|
"scripts": {
|
2018-03-11 14:15:17 +01:00
|
|
|
"test": "gulp test",
|
|
|
|
"start": "gulp serve",
|
|
|
|
"build": "gulp"
|
2013-03-08 01:51:58 +01:00
|
|
|
},
|
2013-02-27 08:26:24 +01:00
|
|
|
"author": {
|
|
|
|
"name": "Hakim El Hattab",
|
|
|
|
"email": "hakim.elhattab@gmail.com",
|
2020-03-03 21:01:35 +01:00
|
|
|
"web": "https://hakim.se"
|
2013-02-27 08:26:24 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/hakimel/reveal.js.git"
|
|
|
|
},
|
|
|
|
"engines": {
|
2019-02-28 13:25:43 +01:00
|
|
|
"node": ">=9.0.0"
|
2013-02-27 08:26:24 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-31 13:06:58 +02:00
|
|
|
"@babel/core": "^7.8.7",
|
|
|
|
"@babel/preset-env": "^7.8.7",
|
|
|
|
"babel-eslint": "^10.1.0",
|
2020-03-31 13:23:51 +02:00
|
|
|
"babel-loader": "^8.1.0",
|
2020-03-31 13:06:58 +02:00
|
|
|
"colors": "^1.4.0",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"glob": "^7.1.6",
|
2020-03-03 21:01:35 +01:00
|
|
|
"gulp": "^4.0.2",
|
|
|
|
"gulp-autoprefixer": "^7.0.1",
|
2020-03-05 13:49:08 +01:00
|
|
|
"gulp-babel": "^8.0.0",
|
2020-03-03 21:01:35 +01:00
|
|
|
"gulp-clean-css": "^4.2.0",
|
|
|
|
"gulp-connect": "^5.7.0",
|
|
|
|
"gulp-eslint": "^6.0.0",
|
2020-03-05 13:49:08 +01:00
|
|
|
"gulp-header": "^2.0.9",
|
2020-03-03 21:01:35 +01:00
|
|
|
"gulp-rename": "^2.0.0",
|
|
|
|
"gulp-sass": "^4.0.2",
|
2020-03-31 13:06:58 +02:00
|
|
|
"gulp-tap": "^2.0.0",
|
2020-03-03 21:01:35 +01:00
|
|
|
"gulp-uglify": "^3.0.2",
|
|
|
|
"gulp-zip": "^5.0.1",
|
|
|
|
"mustache": "^4.0.0",
|
2020-03-31 13:06:58 +02:00
|
|
|
"node-qunit-puppeteer": "^2.0.1",
|
2020-03-05 13:49:08 +01:00
|
|
|
"socket.io": "^2.3.0",
|
2020-03-06 18:59:09 +01:00
|
|
|
"webpack-stream": "^5.2.1",
|
2020-03-31 13:06:58 +02:00
|
|
|
"yargs": "^15.1.0"
|
2013-03-27 08:23:17 +01:00
|
|
|
},
|
2020-03-31 13:23:51 +02:00
|
|
|
"browserslist": "last 2 versions, > 0.5%, not dead",
|
2018-05-14 20:01:59 +02:00
|
|
|
"eslintConfig": {
|
|
|
|
"env": {
|
2020-03-05 11:35:20 +01:00
|
|
|
"browser": true,
|
|
|
|
"es6": true
|
2018-05-14 20:01:59 +02:00
|
|
|
},
|
2020-03-07 18:29:00 +01:00
|
|
|
"parser": "babel-eslint",
|
2020-03-06 19:58:40 +01:00
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module",
|
|
|
|
"allowImportExportEverywhere": true
|
|
|
|
},
|
2018-05-14 20:01:59 +02:00
|
|
|
"globals": {
|
|
|
|
"head": false,
|
|
|
|
"module": false,
|
|
|
|
"console": false,
|
|
|
|
"unescape": false,
|
|
|
|
"define": false,
|
|
|
|
"exports": false
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"curly": 0,
|
|
|
|
"eqeqeq": 2,
|
|
|
|
"wrap-iife": [
|
|
|
|
2,
|
|
|
|
"any"
|
|
|
|
],
|
|
|
|
"no-use-before-define": [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"functions": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"new-cap": 2,
|
|
|
|
"no-caller": 2,
|
|
|
|
"dot-notation": 0,
|
|
|
|
"no-eq-null": 2,
|
2020-03-05 11:35:20 +01:00
|
|
|
"no-unused-expressions": 0
|
2018-05-14 20:01:59 +02:00
|
|
|
}
|
2018-03-11 14:15:17 +01:00
|
|
|
}
|
2012-06-08 05:21:14 +02:00
|
|
|
}
|