-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.36 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
{
"name": "imaginaria",
"version": "0.0.3",
"description": "Generate static sites from images and videos easily with optimizations by default.",
"main": "dist/index.js",
"files": [
"bin/",
"dist/",
"template/"
],
"preferGlobal": true,
"bin": {
"imaginaria": "bin/imaginaria.js"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src test",
"test": "babel-node test/index.js | tspec",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatiasArriola/imaginaria.git"
},
"keywords": [
"static",
"generator",
"pictures",
"videos"
],
"author": "Matias Arriola <matias.arriola@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatiasArriola/imaginaria/issues"
},
"homepage": "https://github.com/MatiasArriola/imaginaria#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-eslint": "*",
"babel-preset-es2015": "^6.3.13",
"coveralls": "*",
"dependency-check": "*",
"doctoc": "*",
"eslint": "*",
"isparta": "*",
"proxyquire": "^1.7.3",
"rimraf": "*",
"sinon": "^1.17.2",
"tap-spec": "*",
"tape": "*",
"watch": "*"
},
"dependencies": {
"commander": "^2.9.0",
"connect": "^3.4.0",
"easyimage": "^2.1.0",
"es6-promisify": "^3.0.0",
"exif": "^0.4.0",
"fluent-ffmpeg": "^2.0.1",
"fs-extra": "^0.26.3",
"glob": "^6.0.2",
"liquid-node": "^2.6.1",
"serve-static": "^1.10.0",
"winston": "^2.1.1"
}
}