Ajout de la base de test + npm upgrade
This commit is contained in:
parent
9fae286c11
commit
e39dec5dc6
4
.babelrc
4
.babelrc
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"presets": ["es2015-ie"]
|
"presets": ["@babel/preset-env"]
|
||||||
}
|
}
|
2235
css/main.css
2235
css/main.css
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,7 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var $btnMail = $("#btn-mail");
|
var $btnMail = $("#btn-mail");
|
||||||
|
|
||||||
$btnMail.removeAttr("disabled");
|
$btnMail.removeAttr("disabled");
|
||||||
|
|
||||||
$btnMail.click(function (evt) {
|
$btnMail.click(function (evt) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
var salutation = bonsoir.salutation();
|
var salutation = bonsoir.salutation();
|
||||||
|
5114
package-lock.json
generated
5114
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
124
package.json
124
package.json
@ -1,59 +1,65 @@
|
|||||||
{
|
{
|
||||||
"name": "anthony-dumas-portfolio",
|
"name": "anthony-dumas-portfolio",
|
||||||
"version": "2.0.0-SNAPSHOT",
|
"version": "2.0.0-SNAPSHOT",
|
||||||
"description": "anthony-dumas-portfolio",
|
"description": "anthony-dumas-portfolio",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"sass",
|
"sass",
|
||||||
"bulma",
|
"bulma",
|
||||||
"css",
|
"css",
|
||||||
"start"
|
"start"
|
||||||
],
|
],
|
||||||
"author": "Anthony Dumas <anthony@dumas.css>",
|
"author": "Anthony Dumas <anthony@dumas.css>",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/AdamasFR/CV_Web_Dumas.git"
|
"url": "git+https://github.com/AdamasFR/CV_Web_Dumas.git"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^9.5.1",
|
"@babel/cli": "^7.5.5",
|
||||||
"ava": "^1.4.1",
|
"@babel/core": "^7.5.5",
|
||||||
"babel-cli": "^6.26.0",
|
"@babel/preset-env": "^7.5.5",
|
||||||
"babel-preset-env": "^1.7.0",
|
"@babel/preset-react": "^7.0.0",
|
||||||
"babel-preset-es2015-ie": "^6.7.0",
|
"autoprefixer": "^9.6.1",
|
||||||
"bulma": "^0.7.2",
|
"ava": "^1.4.1",
|
||||||
"co-exec": "^1.0",
|
"babel-loader": "^8.0.6",
|
||||||
"codecov": "^1.0.1",
|
"babel-preset-env": "^1.7.0",
|
||||||
"ghooks": "^1.2.4",
|
"babel-preset-es2015-ie": "^6.7.0",
|
||||||
"node-sass": "^4.12.0",
|
"bulma": "^0.7.5",
|
||||||
"npm-run-all": "^4.1.5",
|
"co-exec": "^1.0",
|
||||||
"nyc": "^14.1.0",
|
"codecov": "^1.0.1",
|
||||||
"postcss-cli": "^6.1.1",
|
"ghooks": "^1.2.4",
|
||||||
"standard": "^8.4.0"
|
"node-sass": "^4.12.0",
|
||||||
},
|
"npm-run-all": "^4.1.5",
|
||||||
"scripts": {
|
"nyc": "^14.1.1",
|
||||||
"css-deploy": "npm run css-build && npm run css-postcss",
|
"postcss-cli": "^6.1.3",
|
||||||
"css-build": "node-sass _sass/main.scss css/main.css",
|
"standard": "^8.4.0",
|
||||||
"css-postcss": "postcss --use autoprefixer --output css/main.css css/main.css",
|
"webpack": "^4.36.1",
|
||||||
"css-watch": "npm run css-build -- --watch",
|
"webpack-cli": "^3.3.6"
|
||||||
"deploy": "npm run css-deploy && npm run js-build",
|
},
|
||||||
"js-build": "babel _javascript --out-dir lib",
|
"scripts": {
|
||||||
"js-watch": "npm run js-build -- --watch",
|
"css-deploy": "npm run css-build && npm run css-postcss",
|
||||||
"auto-loading": "npx browser-sync start --server --files '*.html' --files 'css/*.css'",
|
"css-build": "node-sass _sass/main.scss css/main.css",
|
||||||
"start": "npm-run-all --parallel css-watch js-watch auto-loading",
|
"css-postcss": "postcss --use autoprefixer --output css/main.css css/main.css",
|
||||||
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
|
"css-watch": "npm run css-build -- --watch",
|
||||||
"standard": "standard index.js",
|
"deploy": "npm run css-deploy && npm run js-build",
|
||||||
"test": "nyc ./node_modules/.bin/ava -v"
|
"js-build": "babel _javascript --out-dir lib",
|
||||||
},
|
"js-watch": "npm run js-build -- --watch",
|
||||||
"dependencies": {
|
"auto-loading": "npx browser-sync start --server --files '*.html' --files 'css/*.css'",
|
||||||
"bonsoir.js": "^1.0.2",
|
"start": "npm-run-all --parallel css-watch js-watch auto-loading",
|
||||||
"browser-sync": "^2.26.5",
|
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
|
||||||
"global": "^4.3.2",
|
"standard": "standard index.js",
|
||||||
"jquery": "^3.4.1",
|
"test": "nyc ./node_modules/.bin/ava -v"
|
||||||
"npx": "^10.2.0"
|
},
|
||||||
},
|
"dependencies": {
|
||||||
"config": {
|
"bonsoir.js": "^1.0.2",
|
||||||
"ghooks": {
|
"browser-sync": "^2.26.7",
|
||||||
"pre-commit": "npm run standard"
|
"global": "^4.4.0",
|
||||||
}
|
"jquery": "^3.4.1",
|
||||||
}
|
"npx": "^10.2.0"
|
||||||
}
|
},
|
||||||
|
"config": {
|
||||||
|
"ghooks": {
|
||||||
|
"pre-commit": "npm run standard"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user