@phensley/cldr
Version:
Internationalization in Typescript with Unicode CLDR, batteries included
70 lines (69 loc) • 1.94 kB
JSON
{
"name": "@phensley/cldr",
"version": "0.6.3",
"description": "Internationalization in Typescript with Unicode CLDR, batteries included",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Patrick Hensley <pathensley@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/phensley/cldr-engine"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"api": "api-extractor run -c ./etc/api-extractor.json",
"api:local": "yarn run api -l",
"build": "yarn run build:code && yarn run build:packs",
"build:code": "tsc -p ./tsconfig.build.json",
"build:packs": "cldr-compiler pack -o ./packs",
"build:watch": "tsc -p ./tsconfig.build.json -w --preserveWatchOutput",
"clean": "rimraf ./lib ./packs",
"coverage": "jest --coverage --runInBand --no-cache",
"install": "node ./scripts/extract.js",
"lint": "tslint -p ./tsconfig.json",
"prepublish": "yarn build",
"stress": "ts-node ./__stress__",
"test": "jest",
"test:watch": "jest --watch --coverage --coverageReporters=html"
},
"files": [
"lib/",
"packs/*.gz",
"packs/sha*.txt",
"packs/resource.json",
"scripts/"
],
"dependencies": {
"@phensley/cldr-core": "^0.6.3"
},
"devDependencies": {
"@microsoft/api-extractor": "^5.6.1",
"@phensley/cldr-compiler": "^0.6.3",
"@types/jest": "^23.1.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"chalk": "^2.3.2",
"jest": "^23.1.0",
"rimraf": "^2.6.2",
"ts-node": "6.1.1",
"tslint": "5.10.0",
"tslint-no-circular-imports": "^0.2.1",
"typescript": "~2.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>../../node_modules/ts-jest/preprocessor.js"
}
}
}