This repository has been archived by the owner on Feb 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
59 lines (59 loc) · 1.41 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "es6-collections",
"version": "0.5.6",
"description": "ES6 Harmony like collections such Map, WeakMap, and Set",
"homepage": "https://github.com/WebReflection/es6-collections",
"keywords": [
"WeakMap",
"Map",
"Set",
"shim",
"polyfill",
"ES6",
"Harmony"
],
"author": "Andrea Giammarchi <[email protected]> (http://webreflection.blogspot.com/)",
"contributors": [
{
"name": "Dmitry Ivanov",
"email": "[email protected]",
"url": "http://github.com/dfcreative"
}
],
"repository": {
"type": "git",
"url": "git://github.com/WebReflection/es6-collections.git"
},
"main": "./index.js",
"engines": {
"node": ">= 0.4.0"
},
"dependencies": {},
"devDependencies": {
"closurecompiler": "~1.3.2",
"better-assert": "~1.0.1",
"mocha": "~1.21.4",
"browserify": "~5.12.0"
},
"license": "MIT",
"optionalDependencies": {},
"scripts": {
"build": "npm run minify && npm run test",
"minify": "./node_modules/closurecompiler/bin/ccjs index.js > es6-collections.js",
"test": "./node_modules/mocha/bin/mocha"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
],
"harness": "mocha-bdd"
}
}