forked from trufflesuite/trufflesuite.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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": "truffle-site",
"version": "0.0.1",
"description": "The truffle website",
"private": true,
"main": "public/index.ejs",
"author": "John McDowall <[email protected]>",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.9.8",
"copyfiles": "^1.2.0",
"csslint-cli": "0.0.3",
"ejs": "^2.5.5",
"github": "^9.2.0",
"imagemin-cli": "^3.0.0",
"jshint": "^2.9.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"metalsmith": "^2.3.0",
"metalsmith-browser-sync": "^1.1.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-sass": "^1.4.0",
"recursive-uglifyjs": "^1.0.0"
},
"scripts": {
"test": "jshint ./public/**/*.js & csslint-cli ./public/styles",
"dev": "node ./dev.js",
"uglify": "recursive-uglifyjs build/scripts && recursive-uglifyjs build/deps/scripts",
"compile": "node ./compile.js",
"build": "npm run compile",
"postcompile": "npm run uglify && npm run imagemin && copyfiles CNAME build/",
"imagemin": "imagemin ./public/images/ build/images/ --optimizationLevel 3 --progressive"
},
"engines": {
"node": "6.5.x",
"npm": "3.3.x"
},
"dependencies": {}
}