presentazione-papero/package.json

85 lines
1.8 KiB
JSON
Raw Normal View History

{
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",
"homepage": "https://revealjs.com",
2013-03-08 01:51:58 +01:00
"subdomain": "revealjs",
"main": "js/reveal.js",
"license": "MIT",
2013-03-08 01:51:58 +01:00
"scripts": {
"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",
"web": "https://hakim.se"
2013-02-27 08:26:24 +01:00
},
"repository": {
"type": "git",
"url": "git://github.com/hakimel/reveal.js.git"
},
"engines": {
"node": ">=9.0.0"
2013-02-27 08:26:24 +01:00
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
2020-03-05 13:49:08 +01:00
"gulp-babel": "^8.0.0",
"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",
"gulp-qunit": "^2.1.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.0.1",
"express": "^4.17.1",
"mustache": "^4.0.0",
2020-03-05 13:49:08 +01:00
"socket.io": "^2.3.0",
"yargs": "^15.1.0",
"webpack-stream": "^5.2.1",
2020-03-05 13:49:08 +01:00
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7"
2013-03-27 08:23:17 +01:00
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"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,
"no-unused-expressions": 0
}
}
}