-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 938 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 938 Bytes
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
{
"name": "binary-sorted-array",
"description": "Binary sorted array. Implements array initialization, insertion, finding index of element, item removal, clearing the array.",
"keywords": [
"sorted",
"binary",
"array",
"insert",
"indexOf",
"clear",
"remove",
"performance"
],
"version": "1.0.4",
"main": "lib/index.js",
"scripts": {
"start": "babel src --out-dir lib --ignore test.js",
"test": "jest"
},
"author": "Michal Iwanow",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.2.1",
"jest": "^19.0.2"
},
"dependencies": {},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcliwanow/binary-sorted-array.git"
},
"bugs": "https://github.com/mcliwanow/binary-sorted-array/issues"
}