printj/package.json

38 lines
965 B
JSON
Raw Normal View History

2016-09-19 06:33:23 +00:00
{
"name": "printj",
"version": "1.1.0",
2016-09-19 06:33:23 +00:00
"author": "sheetjs",
"description": "Pure-JS printf",
"keywords": [ "printf", "sprintf", "format", "string" ],
"bin": {
"printj": "./bin/printj.njs"
},
"main": "./printj",
"types": "types",
2016-09-19 06:33:23 +00:00
"dependencies": {
},
"devDependencies": {
"mocha":"~2.5.3",
"blanket": "~1.2.3",
"@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
},
"repository": { "type":"git", "url":"git://github.com/SheetJS/printj.git" },
"scripts": {
"test": "make test",
"dtslint": "dtslint types"
2016-09-19 06:33:23 +00:00
},
"config": {
"blanket": {
"pattern": "printj.js"
}
},
"homepage": "http://sheetjs.com/opensource",
2017-07-04 07:49:36 +00:00
"files": ["printj.js", "bin/printj.njs", "LICENSE", "README.md", "dist/*.js", "dist/*.map", "dist/LICENSE", "types/index.d.ts", "types/*.json"],
2016-09-19 06:33:23 +00:00
"bugs": { "url": "https://github.com/SheetJS/printj/issues" },
"license": "Apache-2.0",
"engines": { "node": ">=0.8" }
}