Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 52119d1

Browse files
committed
Add base package.json
1 parent cc0e844 commit 52119d1

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# array-string-map
2-
A map that encodes all array items into a string format, so that arrays work like tuples in Python when used for a map.
2+
A Map that internally encodes Arrays to strings so that two Arrays with the same elements will return the same item.
33

44
## Motivation
55

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "array-string-map",
3+
"version": "0.0.1",
4+
"description": "A Map that internally encodes Arrays to strings so that two Arrays with the same elements will return the same item.",
5+
"scripts": {
6+
"test": "echo \"Error: no test specified\" && exit 1"
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/PythonCoderAS/array-string-map.git"
11+
},
12+
"keywords": ["array", "string", "map"],
13+
"author": "",
14+
"license": "GNU General Public License v3.0",
15+
"bugs": {
16+
"url": "https://github.com/PythonCoderAS/array-string-map/issues"
17+
},
18+
"homepage": "https://github.com/PythonCoderAS/array-string-map#readme"
19+
}

0 commit comments

Comments
 (0)