js-codepage/package.json

65 lines
1.4 KiB
JSON
Raw Normal View History

2013-12-06 16:21:34 +00:00
{
"name": "codepage",
2018-01-18 22:47:47 +00:00
"version": "1.12.0",
2013-12-06 16:21:34 +00:00
"author": "SheetJS",
"description": "pure-JS library to handle codepages",
"keywords": [ "codepage", "iconv", "convert", "strings" ],
"bin": {
"codepage": "./bin/codepage.njs"
},
2013-12-06 16:21:34 +00:00
"main": "cputils.js",
2018-01-18 22:47:47 +00:00
"types": "types",
"browser": {
"buffer": "false"
},
"dependencies": {
2018-01-18 22:47:47 +00:00
"commander": "~2.11.0",
"exit-on-epipe": "~1.0.1",
"voc": "~1.0.0"
},
"devDependencies": {
2018-01-18 22:47:47 +00:00
"mocha": "~2.5.3",
"blanket": "~1.2.3",
"@sheetjs/uglify-js": "~2.7.3",
"@types/node": "^8.0.7",
"@types/commander": "^2.9.0",
"dtslint": "^0.1.2",
"typescript": "2.2.0"
},
"repository": { "type":"git", "url":"git://github.com/SheetJS/js-codepage.git"},
"scripts": {
"pretest": "git submodule init && git submodule update",
"test": "make test",
2018-01-18 22:47:47 +00:00
"build": "make js",
"lint": "make fullint",
"dtslint": "dtslint types"
},
"config": {
"blanket": {
"pattern": "[cputils.js]"
}
},
2018-01-18 22:47:47 +00:00
"alex": {
"allow": [
"chinese",
"european",
"german",
"japanese",
"latin"
]
},
"homepage": "http://sheetjs.com/opensource",
"files": [
"LICENSE",
"README.md",
"bin",
"cptable.js",
"cputils.js",
"dist/sbcs.full.js",
"dist/cpexcel.full.js"
],
2013-12-06 16:21:34 +00:00
"bugs": { "url": "https://github.com/SheetJS/js-codepage/issues" },
"license": "Apache-2.0",
"engines": { "node": ">=0.8" }
}