printj/package.json

72 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2016-09-19 06:33:23 +00:00
{
"name": "printj",
2023-12-14 05:37:22 +00:00
"version": "1.3.2",
2016-09-19 06:33:23 +00:00
"author": "sheetjs",
"description": "Pure-JS printf",
2018-01-17 00:55:27 +00:00
"keywords": [
"printf",
"sprintf",
"format",
"string"
],
2016-09-19 06:33:23 +00:00
"bin": {
2022-01-24 04:33:44 +00:00
"printj": "bin/printj.njs"
2016-09-19 06:33:23 +00:00
},
2022-01-24 04:33:44 +00:00
"main": "printj.js",
"module": "printj.mjs",
"types": "types",
2018-01-17 00:55:27 +00:00
"browser": {
"process": false,
"util": false
},
2016-09-19 06:33:23 +00:00
"dependencies": {
},
"devDependencies": {
2018-01-17 00:55:27 +00:00
"@sheetjs/uglify-js": "~2.7.3",
"@types/node": "^8.0.7",
2022-01-24 04:33:44 +00:00
"alex": "10.0.0",
2021-08-30 21:46:24 +00:00
"blanket": "~1.2.3",
2022-01-24 04:33:44 +00:00
"dtslint": "4.2.1",
"eslint": "6.8.0",
"eslint-plugin-html": "6.0.0",
"eslint-plugin-json": "1.4.0",
"jscs": "3.0.7",
"jshint": "2.9.6",
"markdown-spellcheck": "1.3.1",
"mocha": "~2.5.3"
2016-09-19 06:33:23 +00:00
},
2018-01-17 00:55:27 +00:00
"repository": {
"type": "git",
2023-12-14 05:37:22 +00:00
"url": "https://git.sheetjs.com/sheetjs/printj.git"
2018-01-17 00:55:27 +00:00
},
2016-09-19 06:33:23 +00:00
"scripts": {
"test": "make test",
2018-01-17 00:55:27 +00:00
"build": "make",
"lint": "make fullint",
"dtslint": "dtslint types"
2016-09-19 06:33:23 +00:00
},
"config": {
"blanket": {
"pattern": "printj.js"
}
},
2018-01-17 00:55:27 +00:00
"alex": {
"allow": [
2022-01-24 04:33:44 +00:00
"whitespace",
2021-08-30 21:46:24 +00:00
"special",
"period",
"just",
"invalid"
2018-01-17 00:55:27 +00:00
]
},
2021-08-30 21:46:24 +00:00
"homepage": "https://sheetjs.com/",
"files": ["printj.js", "printj.mjs", "bin/printj.njs", "LICENSE", "README.md", "shim.js", "dist/*.js", "dist/*.map", "dist/LICENSE", "types/index.d.ts", "types/*.json"],
2018-01-17 00:55:27 +00:00
"bugs": {
2023-12-14 05:37:22 +00:00
"url": "https://git.sheetjs.com/sheetjs/printj/issues"
2018-01-17 00:55:27 +00:00
},
2016-09-19 06:33:23 +00:00
"license": "Apache-2.0",
2018-01-17 00:55:27 +00:00
"engines": {
"node": ">=0.8"
}
2016-09-19 06:33:23 +00:00
}