-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@paydirt/fmt",
"version": "0.3.1",
"description": "String formating using commonly used standards",
"main": "./lib/umd/index.js",
"module": "./lib/esm5/index.js",
"typings": "./lib/types/index.d.ts",
"scripts": {
"repl": "node -e \"require('repl').start('> ').context.fmt = require('./lib/umd')\"",
"clean": "shx rm -rf lib/",
"prebuild": "npm run clean",
"build": "tsc && rollup -c",
"test": "tsc --outFile /dev/stdout test.ts | node -",
"verify": "npm run build && npm test && npm publish --dry-run"
},
"keywords": [
"fmt",
"data",
"table",
"string",
"format",
"rewrite",
"console",
"formatter",
"formatting"
],
"author": "Carl Calderon <[email protected]> (https://github.com/carlcalderon)",
"license": "MIT",
"repository": "github:carlcalderon/fmt",
"devDependencies": {
"@types/node": "^17.0.10",
"rollup": "^2.65.0",
"rollup-plugin-typescript2": "^0.24.3",
"shx": "^0.3.4",
"typescript": "^4.5.5"
}
}