-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "collections-es6",
"version": "0.1.5",
"description": "ES6 Map, Set, WeakMap and WeakSet polyfill in pure ES5",
"main": "collections-es6.js",
"scripts": {
"build": "uglifyjs --source-map --compress --output dist/collections-es6.min.js -- collections-es6.js",
"test": "node ./test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rousan/collections-es6.git"
},
"keywords": [
"es6",
"es6-collections",
"es5",
"polyfills",
"ponyfills",
"harmony",
"harmony-collections",
"collections",
"map",
"set",
"weakmap",
"weakset",
"es6-map",
"es6-set",
"es6-weakmap",
"es6-weakset"
],
"author": "Rousan Ali <[email protected]> (https://rousan.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rousan/collections-es6/issues"
},
"homepage": "https://github.com/rousan/collections-es6#readme",
"dependencies": {
"symbol-es6": "^0.1.2"
},
"devDependencies": {
"uglify-js": "^3.3.9"
}
}