You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
678 B
36 lines
678 B
{ |
|
"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" |
|
}
|
|
|