-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "swap-array",
"version": "1.0.0",
"description": "Swap Array Entries by Index",
"main": "dist/swap-array.js",
"scripts": {
"build": "babel index.js --out-file dist/swap-array.js",
"test": "mocha test.js --compilers js:babel-register",
"bench": "matcha bench.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelzoidl/swap-array.git"
},
"files": [
"dist"
],
"keywords": [
"swap",
"array",
"javascript",
"reorder",
"order",
"index"
],
"author": "Michael J. Zoidl <npm@michaelzoidl.com> (https://entwicklerstube.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelzoidl/swap-array/issues"
},
"homepage": "https://github.com/michaelzoidl/swap-array#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"matcha": "^0.7.0",
"mocha": "^2.4.5"
},
"dependencies": {}
}