UNPKG

1.48 kBJSONView Raw
1{
2 "name": "pad",
3 "description": "Left and right string padding",
4 "version": "2.2.1",
5 "author": "David Worms <david@adaltas.com>",
6 "contributors": [
7 {
8 "name": "David Worms",
9 "email": "david@adaltas.com"
10 }
11 ],
12 "devDependencies": {
13 "babel-cli": "^6.26.0",
14 "babel-preset-es2015": "^6.24.1",
15 "coffeescript": "^2.3.1",
16 "mocha": "^5.2.0",
17 "should": "^13.2.3"
18 },
19 "engines": {
20 "node": ">= 4.0.0"
21 },
22 "homepage": "https://github.com/adaltas/node-pad",
23 "keywords": [
24 "pad",
25 "string"
26 ],
27 "license": "BSD-3-Clause",
28 "main": "./lib",
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/adaltas/node-pad.git"
32 },
33 "scripts": {
34 "preversion": "grep '## Trunk' CHANGELOG.md && npm test",
35 "version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
36 "postversion": "git push && git push --tags && npm publish",
37 "patch": "npm version patch -m 'Bump to version %s'",
38 "minor": "npm version minor -m 'Bump to version %s'",
39 "major": "npm version major -m 'Bump to version %s'",
40 "coffee": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
41 "pretest": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
42 "test": "mocha test/**/*.coffee"
43 },
44 "dependencies": {
45 "wcwidth": "^1.0.1"
46 },
47 "types": "lib/index.d.ts"
48}