symbol-for
Version:
A silly ponyfill for and Symbol and Symbol.for
49 lines (48 loc) • 1.09 kB
JSON
{
"name": "symbol-for",
"version": "1.0.1",
"description": "A silly ponyfill for and Symbol and Symbol.for",
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "nyc ava --verbose --timeout=10s",
"test-no-cov": "ava --verbose --timeout=10s",
"report-cov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"lib/",
"src/"
],
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/node-symbol-for.git"
},
"keywords": [
"symbol-for",
"symbol-keyfor",
"symbol",
"ponyfill"
],
"engines": {
"node": ">=4"
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/node-symbol-for/issues"
},
"ava": {
"require": "babel-register",
"babel": {
"babelrc": true
}
},
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^2.3.0"
}
}