-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "array-portal",
"version": "1.1.0",
"description": "Make a portal between two arrays and transfer items between them",
"main": "dist/array-portal.js",
"scripts": {
"build": "babel index.js --out-file dist/array-portal.js",
"test": "mocha test.js --compilers js:babel-register",
"bench": "matcha bench.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelzoidl/array-portal.git"
},
"files": [
"dist"
],
"keywords": [
"array",
"javascript",
"portal"
],
"author": "Michael J. Zoidl <[email protected]> (https://entwicklerstube.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelzoidl/array-portal/issues"
},
"homepage": "https://github.com/michaelzoidl/array-portal#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": {
"lodash.clone": "^4.3.2",
"lodash.findindex": "^4.3.0"
}
}