-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 975 Bytes
/
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
{
"name": "secas",
"version": "1.0.0",
"description": "The source code for the Southeast Conservation Adaptation Strategy (SECAS) website.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prehero": "rimraf images/hero",
"copy:blog": "ncp data/bloggable.csv _data/blog.csv",
"hero": "node _build/hero",
"blog": "node _build/csv2json && npm run copy:blog",
"start": "jekyll serve --config _config.yml,_config-dev.yml -w"
},
"keywords": [
"Southeast Conservation Adaptation Strategy",
"SECAS"
],
"author": "Roy Hewitt, @r0yhewitt",
"license": "SAX-PD",
"devDependencies": {
"babyparse": "^0.4.6",
"csvtojson": "^1.1.7",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.5.2",
"sharp": "^0.25.2"
},
"dependencies": {
"toastr": "^2.1.4"
}
}