generated from shubhranshu/nodejs-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "@stubbydigits/aspect-ratio",
"version": "1.0.5",
"description": "Calculate aspect ratios based on the dimensions x and y",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/shubhranshu/aspect-ratio.git"
},
"author": "Shubhranshu <1248830+shubhranshu@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build-js": "npx babel src --out-dir dist",
"copy-files": "npx copyfiles -u 1 src/data/*.json dist/",
"build": "npm run copy-files && npm run build-js",
"test": "npx ava",
"watch-test": "npx ava --watch",
"cli-run": "npx babel-node src/index.js",
"watch-run": "npx nodemon --exec npx babel-node src/index.js"
},
"dependencies": {},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"ava": "^3.6.0",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.3"
},
"ava": {
"require": [
"@babel/register"
],
"babel": true
},
"bugs": {
"url": "https://github.com/shubhranshu/aspect-ratio/issues"
},
"homepage": "https://github.com/shubhranshu/aspect-ratio#readme",
"directories": {
"test": "test"
},
"keywords": [
"aspect-ratio",
"aspect",
"device",
"ratio",
"screen",
"node",
"display",
"fullhd",
"hd",
"sd",
"4k",
"16:9"
]
}