UNPKG

awesome-string

Version:

The ultimate JavaScript string library

85 lines 3.1 kB
{ "name": "awesome-string", "version": "1.1.1", "description": "The ultimate JavaScript string library", "homepage": "https://hyeonil.github.io", "author": { "name": "Hyeonil Jeong", "email": "dev.nuti0102@gmail.com", "url": "https://hyeonil.github.io/about/" }, "license": "MIT", "keywords": [ "string", "sprintf", "trim", "truncate", "pad", "slugify", "latinise", "escape", "word", "wrap", "case", "strip" ], "repository": { "type": "git", "url": "git+https://github.com/hyeonil/awesome-string.git" }, "bugs": { "url": "https://github.com/hyeonil/awesome-string/issues", "email": "dev.nuti0102@gmail.com" }, "main": "index.js", "jsnext:main": "index.es2015.js", "scripts": { "eslint": "eslint . --ext .js", "build": "npm run build-dist && npm run build-npm-package", "build-dist": "rollup -c config/rollup_dist.js && rollup -c config/rollup_dist_min.js && rollup -c config/rollup_test.js", "build-npm-package": "npm run prepare-npm-package && rollup -c config/rollup_dist_mod.js && node config/transform.js && rollup -c config/rollup_dist_es.js", "prepare-npm-package": "rm -rf dist_mod && mkdir dist_mod && cp package.json README.md LICENSE.md ./dist_mod", "test": "mocha test/index.js --reporter dot", "test-npm-package": "mocha test/modules_common.js test/modules_es2015.js --reporter dot", "test-sl": "grunt --gruntfile ./test_runner/gruntfile.js --base .", "coverage": "istanbul cover _mocha -- test/index.js --reporter spec", "report-coverage": "cat ./coverage/lcov.info | codecov", "verify": "npm run eslint && npm run coverage", "jsdoc": "jsdoc --configure .jsdoc.json", "deploy": "rollup -c config/rollup_dist.js && cp dist/awesome-string.js docs/scripts && scp -r docs/* hyeonil:/home/hyeonil/webapps/awesome_string_docs", "precommit": "npm run eslint && npm run test" }, "devDependencies": { "babel-cli": "6.18.0", "babel-core": "6.21.0", "babel-eslint": "7.1.1", "babel-plugin-add-module-exports": "0.2.1", "babel-plugin-module-resolver": "2.4.0", "babel-plugin-transform-es2015-block-scoping": "6.21.0", "babel-plugin-transform-es2015-destructuring": "6.19.0", "babel-plugin-transform-es2015-modules-commonjs": "6.18.0", "babel-plugin-transform-es2015-parameters": "6.21.0", "babel-plugin-transform-es2015-shorthand-properties": "6.18.0", "babel-plugin-transform-es2015-spread": "6.8.0", "babel-plugin-transform-object-assign": "6.8.0", "babel-register": "6.18.0", "babel-root-import": "4.1.5", "chai": "3.5.0", "codecov.io": "0.1.6", "eslint": "3.12.2", "glob": "7.1.1", "grunt": "1.0.1", "grunt-contrib-connect": "1.0.2", "grunt-saucelabs": "9.0.0", "husky": "0.12.0", "istanbul": "1.1.0-alpha.1", "jsdoc": "3.4.3", "mkdirp": "0.5.1", "mocha": "3.2.0", "rollup": "0.38.0", "rollup-plugin-babel": "2.7.1", "rollup-plugin-uglify": "1.0.1", "source-map-support": "0.4.8" }, "dependencies": {} }