-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.65 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
{
"name": "template.data.gouv.fr",
"version": "1.3.2",
"description": "Template CSS pour data.gouv.fr et compagnie.",
"license": "MIT",
"devDependencies": {
"copyfiles": "^1.2.0",
"cssnano": "^3.10.0",
"gh-pages": "^1.0.0",
"postcss-cli": "^4.1.1",
"postcss-custom-media": "^7.0.7",
"postcss-import": "^11.0.0",
"postcss-preset-env": "^6.4.0",
"postcss-reporter": "^5.0.0",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0"
},
"scripts": {
"deploy": "gh-pages -d dist -m 'Deploy [skip ci]'",
"dev": "postcss --output template.css --watch src/css/template.css",
"lint": "stylelint --fix src/css/**/*.css",
"test": "stylelint src/css/**/*.css",
"dist": "rm -rf dist && yarn dist-css && yarn dist-site",
"dist-site": "copyfiles CNAME images/* images/*/* images/icons/external/* fonts/*/* index.html dist",
"dist-css": "postcss --output dist/template.css src/css/template.css",
"prepublish-css": "postcss --output dist/main.css src/css/index.css && NODE_ENV=production postcss --output dist/main.min.css src/css/index.css",
"prepublish": "rm -rf dist && yarn prepublish-css && copyfiles images/* images/icons/external/* images/favicons/* fonts/**/* dist"
},
"files": [
"dist"
],
"style": "dist/main.min.css",
"main": "dist/main.css",
"repository": {
"type": "git",
"url": "https://github.com/etalab/template.data.gouv.fr.git"
},
"bugs": {
"url": "https://github.com/etalab/template.data.gouv.fr/issues"
},
"keywords": [
"template.data.gouv.fr",
"etalab",
"beta.gouv.fr",
"ui kit"
],
"dependencies": {
"menuspy": "^1.3.0"
}
}