append-type
Version:
Stringify the value with appending its type: 10 → '10 (number)'
45 lines (44 loc) • 910 B
JSON
{
"name": "append-type",
"version": "1.0.2",
"description": "Stringify the value with appending its type: 10 → '10 (number)'",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"repository": "shinnn/append-type",
"license": "MIT-0",
"module": "index.mjs",
"files": [
"index.js",
"index.mjs"
],
"scripts": {
"prebuild": "eslint .",
"build": "rollup --config=node:module",
"pretest": "npm run-script build",
"test": "nyc node test.js"
},
"keywords": [
"string",
"stringify",
"tostring",
"type",
"append",
"concat",
"join"
],
"devDependencies": {
"@shinnn/eslint-config": "^6.8.6",
"eslint": "^5.10.0",
"lodash": "^4.17.11",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"rollup": "^0.67.4",
"rollup-config-module": "^2.0.2",
"tape": "^4.9.1"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}