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": "uniq",
| "version": "1.0.1",
| "description": "Removes duplicates from a sorted array in place",
| "main": "uniq.js",
| "directories": {
| "test": "test"
| },
| "dependencies": {},
| "devDependencies": {
| "tape": "^2.12.3"
| },
| "scripts": {
| "test": "tape test/*.js"
| },
| "repository": {
| "type": "git",
| "url": "git://github.com/mikolalysenko/uniq.git"
| },
| "keywords": [
| "array",
| "duplicate",
| "unique",
| "uniq",
| "remove",
| "sort",
| "in",
| "place",
| "no",
| "copy"
| ],
| "author": "Mikola Lysenko",
| "license": "MIT",
| "readmeFilename": "README.md",
| "gitHead": "e9828cfcb97e25a351f95b39fdf3c31876ff3985"
| }
|
|