-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "dsmun19",
"version": "0.0.0",
"description": "The Doon School Model United Nations 2019 website",
"main": "index.pug",
"scripts": {
"test": "eclint check $(git ls-files) && pug-lint --reporter inline *.pug **/*.pug && stylelint **/*.css && eslint '**/*.js'",
"imagemin": "for file in img/**/*.png; do imagemin $file --out-dir $(dirname -- $file) > /dev/null; done",
"build": "rm -rf dist && eleventy",
"now-build": "rm -rf dist && eleventy",
"deploy-dev": "now",
"deploy": "now --target production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shreyasminocha/dsmun19.git"
},
"keywords": [
"dsmun",
"doon school",
"model united nations",
"mun"
],
"author": "Shreyas Minocha",
"license": "MIT",
"bugs": {
"url": "https://github.com/shreyasminocha/dsmun19/issues"
},
"homepage": "https://github.com/shreyasminocha/dsmun19#readme",
"devDependencies": {
"@11ty/eleventy": "^v0.9.0-beta.1",
"eclint": "^2.8.1",
"imagemin-cli": "^4.0.1",
"jstransformer-markdown-it": "^2.1.0",
"pug-lint": "^2.6.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.3.0"
}
}