-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "website_2019",
"version": "1.0.0",
"description": "E-Cell IIIT-H website",
"repository": {
"type": "git",
"url": "git+https://github.com/IIIT-ECell/website_2019.git"
},
"author": "E-Cell IIIT-H Tech Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/IIIT-ECell/website_2019/issues"
},
"homepage": "https://github.com/IIIT-ECell/website_2019#readme",
"devDependencies": {
"gulp": "^5.0.0",
"gulp-autoprefixer": "^6.1.0",
"gulp-clean-css": "^4.2.0",
"gulp-htmlmin": "^5.0.1",
"gulp-remove-empty-lines": "^0.1.0",
"gulp-terser": "^1.2.0",
"husky": "^2.3.0",
"prettier": "1.17.1",
"pretty-quick": "^1.10.0"
},
"scripts": {
"pretty": "prettier --write \"./**/*.{js,css}\"",
"pretty_test": "prettier --check \"./**/*.{js,css}\"",
"dist": "bundle exec jekyll b && gulp",
"deploy": "npm run dist && scp -r _site/* [email protected]:/home/ecell/site && ssh -t [email protected] './update.sh'"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
}
}
}