You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
899 B
44 lines
899 B
{ |
|
"name": "es6-weak-map", |
|
"version": "2.0.3", |
|
"description": "ECMAScript6 WeakMap polyfill", |
|
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)", |
|
"keywords": [ |
|
"map", |
|
"weakmap", |
|
"collection", |
|
"es6", |
|
"harmony", |
|
"list", |
|
"hash", |
|
"gc", |
|
"ponyfill" |
|
], |
|
"repository": { |
|
"type": "git", |
|
"url": "git://github.com/medikoo/es6-weak-map.git" |
|
}, |
|
"dependencies": { |
|
"d": "1", |
|
"es5-ext": "^0.10.46", |
|
"es6-iterator": "^2.0.3", |
|
"es6-symbol": "^3.1.1" |
|
}, |
|
"devDependencies": { |
|
"eslint": "^5.5", |
|
"eslint-config-medikoo-es5": "^1.7", |
|
"tad": "^0.2.8" |
|
}, |
|
"eslintConfig": { |
|
"extends": "medikoo-es5", |
|
"root": true, |
|
"globals": { |
|
"WeakMap": true |
|
} |
|
}, |
|
"scripts": { |
|
"lint": "eslint --ignore-path=.gitignore .", |
|
"test": "node ./node_modules/tad/bin/tad" |
|
}, |
|
"license": "ISC" |
|
}
|
|
|