This repository was archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
{
"name": "sicamp",
"version": "0.0.0",
"description": "sicamp.github.io",
"main": "index.js",
"scripts": {
"postinstall": "gulp vendor",
"start": "enb server",
"prebuild": "gulp vendor",
"build": "YENV=production enb make --no-cache",
"stylelint": "stylelint \"**/*.css\"",
"eslint": "eslint .",
"precommit:css": "files=$(git diff --cached --diff-filter=ACMTR --name-only | grep '\\.css$'); [ -n \"$files\" ] && stylelint $files || exit 0",
"precommit:js": "files=$(git diff --cached --diff-filter=ACMTR --name-only | grep '\\.js$'); [ -n \"$files\" ] && eslint $files || exit 0",
"precommit": "npm run precommit:js && npm run precommit:css",
"test": "npm run stylelint && npm run eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/sicamp/sicamp.github.io.git"
},
"private": true,
"author": "isqua <isqua@isqua.ru>",
"license": "MIT",
"devDependencies": {
"bh": "^4.1.4",
"enb": "^1.2.0",
"enb-bem-techs": "^2.2.1",
"enb-bh": "^1.2.0",
"enb-borschik": "^2.4.0",
"enb-js": "^1.1.0",
"enb-postcss": "^0.2.1",
"eslint": "^2.9.0",
"font-awesome": "^4.6.1",
"gulp": "^3.9.1",
"gulp-postcss": "^6.1.0",
"gulp-replace": "^0.5.4",
"mkdirp": "^0.5.1",
"postcss-cssnext": "^2.5.2",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^1.2.0",
"postcss-sorting": "^1.3.1",
"postcss-url": "^5.1.1",
"require-dir": "^0.3.0",
"stylelint": "^6.2.2",
"stylelint-config-standard": "^6.0.0"
}
}