-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "machinist",
"version": "0.1.0",
"description": "A boilerplate for a Metalsmith static site.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"doc-ingest": "node ./lib/googledocjson.js",
"debug": "DEBUG=metalsmith:*, NODE_ENV=debug npm run dev",
"dev": "NODE_ENV=development npm start",
"build": "NODE_ENV=production npm start",
"stage": "NODE_ENV=staging npm start",
"format": "eslint \"src/scripts/**\" \"lib/**\" --fix && stylelint \"src/styles/**/*.scss\" --fix",
"script-lint": "eslint \"src/scripts/**\" \"lib/**\"",
"style-lint": "stylelint \"**/*.scss\"",
"lint": "npm run script-lint && npm run style-lint && htmlhint **/*.{hbs,html} --config .htmlhintrc --ignore **/www/**",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ianrose/machinist.git"
},
"keywords": [
"metalsmith",
"boilerplate",
"static",
"site"
],
"author": "Ian Rose",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianrose/machinist/issues"
},
"homepage": "https://github.com/ianrose/machinist#readme",
"lint-staged": {
"*.scss": "style-lint",
"*.js": "script-lint"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"googledoc-to-json": "^0.3.0",
"handlebars": "^4.0.5",
"handlebars-helpers": "^0.7.5",
"js-yaml": "^3.10.0",
"metalsmith": "^2.2.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-collections": "petasittek/metalsmith-collections",
"metalsmith-drafts": "0.0.1",
"metalsmith-filedata": "^0.1.0",
"metalsmith-fingerprint-ignore": "^1.1.2",
"metalsmith-in-place": "^1.4.4",
"metalsmith-layouts": "^1.6.5",
"metalsmith-mapsite": "^1.0.4",
"metalsmith-markdown": "^0.2.1",
"metalsmith-metadata": "0.0.4",
"metalsmith-models": "git+https://github.com/ianrose/metalsmith-models.git#handles-no-models",
"metalsmith-paths": "^3.0.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-postcss": "^4.0.0",
"metalsmith-raw": "^0.2.0",
"metalsmith-register-helpers": "^0.2.0",
"metalsmith-sass": "^1.4.0",
"metalsmith-webpack2": "git+https://github.com/ianrose/metalsmith-webpack2.git",
"metalsmith-with-postcss": "^1.0.0",
"typogr": "^0.6.6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.11.0",
"htmlhint": "^0.9.13",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"metalsmith-browser-sync": "^1.1.1",
"metalsmith-debug": "^1.1.0",
"metalsmith-writemetadata": "^0.4.5",
"standard": "^10.0.3",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0"
}
}