-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "calculate-aspect-ratio",
"version": "0.1.3",
"description": "A simple utility function, and command line utility, for calculating an aspect ratio based on width and height.",
"license": "MIT",
"author": "Ryan Hefner <[email protected]> (https://www.ryanhefner.com)",
"repository": "ryanhefner/calculate-aspect-ratio",
"bugs": {
"url": "https://github.com/ryanhefner/calculate-aspect-ratio/issues"
},
"homepage": "https://aspectrat.io",
"files": [
"cli.js",
"index.js",
"es",
"src",
"umd"
],
"directories": {
"lib": "/src"
},
"bin": {
"aspectratio": "./cli.js"
},
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rm -f index.js && rm -rf es && rm -rf umd",
"prebuild": "npm run clean",
"build": "node ./tools/build.js",
"watch": "babel ./src -d . --ignore __tests__ --watch",
"prepare": "npm run build",
"prepublishOnly": "node ./tools/build.js",
"push-release": "git push origin master && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"commander": "^2.12.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"gzip-size": "^4.1.0",
"pretty-bytes": "^4.0.2",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1"
},
"keywords": [
"aspect ratio",
"aspect",
"ratio",
"calculate",
"utility",
"cli",
"command line"
]
}