-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
{
"name": "2d-array-rotation",
"version": "2.1.1",
"description": "Rotates two-dimensional arrays clockwise by 90 degrees, 180 degrees, or 270 degrees",
"author": {
"name": "Jon Stout",
"url": "http://www.jonstout.net/"
},
"license": "MIT",
"main": "dist/2d-array-rotation.js",
"module": "2d-array-rotation.js",
"browser": "dist/2d-array-rotation.min.js",
"engines": {
"node": ">=10.16.1"
},
"repository": {
"type": "git",
"url": "[email protected]:tinwatchman/2d-array-rotation.git"
},
"bugs": {
"url": "https://github.com/tinwatchman/2d-array-rotation/issues"
},
"scripts": {
"package": "gulp",
"pretest": "gulp",
"test": "mocha --require @babel/register",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"2d",
"array",
"rotate",
"rotation",
"transpose",
"mirror",
"flip",
"two-dimensional",
"transform",
"vertical",
"horizontal",
"reindex",
"turn",
"spin",
"swivel",
"revolve"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-strip-comments": "^2.5.2",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0"
}
}