UNPKG

1.53 kBJSONView Raw
1{
2 "name": "pad",
3 "description": "Left and right string padding",
4 "version": "2.3.0",
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": "^7.2.3",
14 "@babel/core": "^7.4.0",
15 "@babel/preset-env": "^7.4.2",
16 "coffeescript": "^2.4.0",
17 "mocha": "^6.0.2",
18 "should": "^13.2.3"
19 },
20 "engines": {
21 "node": ">= 4.0.0"
22 },
23 "homepage": "https://github.com/adaltas/node-pad",
24 "keywords": [
25 "pad",
26 "string"
27 ],
28 "files": [
29 "/lib"
30 ],
31 "license": "BSD-3-Clause",
32 "main": "./lib",
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/adaltas/node-pad.git"
36 },
37 "scripts": {
38 "preversion": "grep '## Trunk' CHANGELOG.md && npm test",
39 "version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
40 "postversion": "git push && git push --tags && npm publish",
41 "patch": "npm version patch -m 'Bump to version %s'",
42 "minor": "npm version minor -m 'Bump to version %s'",
43 "major": "npm version major -m 'Bump to version %s'",
44 "coffee": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
45 "pretest": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
46 "test": "mocha test/**/*.coffee"
47 },
48 "dependencies": {
49 "wcwidth": "^1.0.1"
50 },
51 "types": "lib/index.d.ts"
52}