-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "file_charter",
"version": "1.0.0",
"description": "Fetches hourly data and builds a chart/table using C3/D3 libraries",
"author": "Armfoot",
"license": "Apache 2.0",
"scripts": {
"postinstall": "npm run build",
"build": "npm-run-all lint css",
"css": "npm-run-all css:precompile css:autoprefix",
"css:autoprefix": "postcss --use autoprefixer --replace global.css",
"css:precompile": "node-sass --include-path vendor --output-style expanded --output . sass/global.scss",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint \"sass/**/*.scss\"",
"lint:js": "eslint --ignore-pattern vendor js",
"lint:html": "html-validator --verbose --file index.html",
"watch:css": "npm run css && onchange \"sass/**/*.scss\" -- npm-run-all css",
"watch:lint": "npm run lint && onchange \"sass/**/*.{scss|html|js}\" -- npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Armfoot/file_charter.git"
},
"keywords": [
"qualidade",
"ar",
"Portugal"
],
"readmeFilename": "README.md",
"devDependencies": {
"autoprefixer": "^7.2.5",
"eslint": "^4.16.0",
"html-validator-cli": "^3.2.0",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"onchange": "^3.3.0",
"postcss-cli": "^4.1.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"stylelint-scss": "^2.2.0",
"stylelint-config-recommended-scss": "^3.0.0"
},
"engines": {
"node": "^6.11"
}
}