chardata-charset
Version:
CharSet class for the ucdata package
56 lines (55 loc) • 1.3 kB
JSON
{
"name": "chardata-charset",
"version": "0.0.0-alpha.3",
"description": "CharSet class for the ucdata package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"compile": "tsc -p ./",
"test": "jest --coverage",
"test-watch": "jest --coverage --watch",
"prepublishOnly": "npm run clean & npm run compile & npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbuckton/charset.git"
},
"keywords": [
"unicode",
"ucd",
"charset"
],
"author": "Ron Buckton <rbuckton@chronicles.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rbuckton/charset/issues"
},
"homepage": "https://github.com/rbuckton/charset#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.1.3",
"jest": "^22.4.2",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.0",
"typescript": "^2.7.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "/src/__test__/.*\\.ts$",
"collectCoverage": false,
"collectCoverageFrom": [
"src/{charSet}.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"lcov"
]
}
}