starter-math
Version:
A simple math library
33 lines (32 loc) • 609 B
JSON
{
"name": "starter-math",
"version": "1.0.12",
"description": "A simple math library",
"main": "",
"scripts": {
"build": "rm -rf lib && tsc",
"prepare": "npm run test && npm run build",
"test": "jest --coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"files": [
"lib"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
}
}