-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.44 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
{
"name": "2016.jsunconf.eu",
"version": "1.0.0",
"description": "The 2016 edition of the jsunconf website",
"main": "index.js",
"dependencies": {
"metalsmith": "^2.1.0"
},
"devDependencies": {
"gh-pages": "^0.8.0",
"light-server": "^1.1.2",
"metalsmith-assets": "^0.1.0",
"metalsmith-collections": "^0.7.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "^0.4.0",
"metalsmith-stylus": "^1.0.0",
"metalsmith-templates": "^0.7.0",
"moment": "^2.10.6",
"then-jade": "^2.4.1"
},
"scripts": {
"start": "npm run clean && npm run build && npm run server",
"clean": "rm -rf build",
"server": "light-server -s ./build/ -p 8080 -w 'theme/**/*, content/**/* # npm run build'",
"build": "metalsmith",
"setenv": "git config --global user.email \"$GH_EMAIL\" && git config --global user.name \"$GH_NAME\"",
"ci-deploy": "if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ] && [ \"$TRAVIS_BRANCH\" = \"master\" ]; then npm run setenv && npm run deploy; fi;",
"deploy": "npm run clean && npm run build && node tools/deploy.js",
"test": "npm run ci-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsunconf/2016.jsunconf.eu.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsunconf/2016.jsunconf.eu/issues"
},
"homepage": "https://github.com/jsunconf/2016.jsunconf.eu#readme"
}