-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "sliide",
"version": "0.0.1",
"description": "sliide",
"repository": {
"type": "git",
"url": "https://github.com/ffoodd/sliide"
},
"bugs": {
"url": "https://github.com/ffoodd/sliide/issues"
},
"author": {
"name": "Gaël Poupard",
"url": "https://www.ffoodd.fr",
"email": "[email protected]"
},
"license": "MIT",
"ignore": [
"node_modules"
],
"scripts": {
"test": "concurrently \"npm:test:*\"",
"test:html": "html-validate \"*.html\"",
"test:a11y": "pa11y-ci '*.html' -c .pa11yci.json",
"start": "concurrently --kill-others \"npm:watch\" \"npm:browser:start\"",
"browser:start": "servor --browse --reload --secure",
"build": "concurrently --kill-others \"npm:build:*\"",
"prebuild:css": "sass sass/:css/ --style expanded --no-source-map",
"build:css": "postcss css/sliide.css -u autoprefixer cssnano --no-map --ext .min.css --dir css/",
"postbuild:css": "purgecss --css css/sliide.min.css --content *.html js/*.js --output css/ --keyframes --variables",
"build:svg": "svgo img/*.svg",
"build:js": "terser ./js/prism.js -o ./js/prism.min.js -c -m",
"watch": "concurrently --kill-others \"npm:watch:*\"",
"watch:css": "nodemon --watch ./sass --ext scss --exec \"npm run build:css\"",
"watch:js": "nodemon --watch ./js --ext js --ignore js/prism.min.js --exec \"npm run build:js\"",
"dependencies": "shx cp -r node_modules/twemoji/dist/twemoji.min.js js/"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"cssnano": "^6.0.3",
"html-validate": "^8.9.1",
"nodemon": "^3.0.3",
"pa11y-ci": "^3.1.0",
"pa11y-ci-reporter-html": "^6.0.2",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"purgecss": "^5.0.0",
"sass": "^1.70.0",
"servor": "^4.0.2",
"shx": "^0.3.4",
"svgo": "^3.2.0",
"terser": "^5.27.0"
},
"browserslist": [
"last 1 versions"
],
"dependencies": {
"twemoji": "^14.0.2"
}
}