-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
{
"name": "rotate-array",
"version": "1.2.0",
"description": "Rotates the elements of an array in place. Supports rotation in both directions and automatically wraps rotations which are larger than the input array size.",
"main": "index.js",
"scripts": {
"jshint": "jshint index.js test/*.js",
"jscs": "jscs index.js test",
"tape": "tape test/*.js",
"test": "npm run jshint && npm run jscs && npm run tape"
},
"repository": {
"type": "git",
"url": "git@github.com:CMTegner/rotate-array.git"
},
"keywords": [
"array",
"rotate"
],
"author": "Christian Tegnér",
"contributors": [
{
"name": "David Ernst",
"email": "npm@dsernst.com",
"url": "http://dsernst.com/"
},
{
"name": "Andrew Vasylchuk",
"email": "andrew.d.vasilchuk@gmail.com"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/CMTegner/rotate-array/issues"
},
"homepage": "https://github.com/CMTegner/rotate-array",
"devDependencies": {
"tape": "~2.12.3",
"jshint": "~2.5.0",
"jscs": "~1.4.3"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"ff/3..latest",
"chrome/4..latest",
"safari/4..latest",
"opera/10..latest",
"iphone/6..latest",
"ipad/6..latest",
"android/latest"
]
}
}