-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 815 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 815 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": "weak-map",
"version": "1.0.8",
"description": "A WeakMap shim for Node.js and browsers",
"main": "weak-map.js",
"repository": {
"type": "git",
"url": "git://github.com/drses/weak-map.git"
},
"keywords": [
"weakmap",
"weak-map",
"weak",
"map",
"collections",
"es6"
],
"author": "Mark Miller <erights@gmail.com>",
"maintainer": "Kris Kowal <kris@cixar.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/drses/weak-map/issues"
},
"files": [
"weak-map.js"
],
"scripts": {
"test": "npm run test:native; npm run test:shim",
"test:phantom": "",
"test:shim": "node test/index.js",
"test:native": "node --harmony_collections test/index.js"
},
"devDependencies": {
"jasminum": ">=2.0.2 <3.0.0"
}
}