printj/package.json

62 lines
1.1 KiB
JSON
Raw Normal View History

2016-09-19 06:33:23 +00:00
{
"name": "printj",
2018-10-19 17:13:54 +00:00
"version": "1.2.1",
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": {
"printj": "./bin/printj.njs"
},
"main": "./printj",
"module": "./print.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
"mocha": "~2.5.3",
"blanket": "~1.2.3",
2018-01-17 00:55:27 +00:00
"@sheetjs/uglify-js": "~2.7.3",
"@types/node": "^8.0.7",
"dtslint": "^0.1.2",
"typescript": "2.2.0"
2016-09-19 06:33:23 +00:00
},
2018-01-17 00:55:27 +00:00
"repository": {
"type": "git",
"url": "git://github.com/SheetJS/printj.git"
},
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": [
"period"
]
},
"homepage": "http://sheetjs.com/opensource",
"files": ["printj.js", "printj.mjs", "bin/printj.njs", "LICENSE", "README.md", "dist/*.js", "dist/*.map", "dist/LICENSE", "types/index.d.ts", "types/*.json"],
2018-01-17 00:55:27 +00:00
"bugs": {
"url": "https://github.com/SheetJS/printj/issues"
},
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
}