forked from gkatsev/set.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 676 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 676 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
{
"name": "set",
"version": "1.1.1",
"description": "An implementation of Sets in JavaScript",
"main": "set",
"scripts": {
"test": "vows"
},
"repository": {
"type": "git",
"url": "https://github.com/gkatsev/set.js"
},
"bugs": "https://github.com/gkatev/set.js/issues",
"directories": {
"lib": "."
},
"keywords": [
"set",
"intersect",
"union",
"difference"
],
"author": "Gary Katsevman <me@gkatsev.com> (gkatsev.com)",
"license": {
"type": "MIT",
"url": "http://gkatsev.mit-license.org/"
},
"readmeFilename": "README.md",
"devDependencies": {
"vows": "*"
},
"engines": {
"node": "*"
}
}