2022-01-30 17:44:50 +00:00
|
|
|
{
|
|
|
|
"name": "bennc-js",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "A TypeScript/Javascript BENNC implementation.",
|
2022-02-06 20:34:13 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2022-01-30 17:44:50 +00:00
|
|
|
"scripts": {
|
|
|
|
"lint": "ts-standard",
|
|
|
|
"test": "jest",
|
2022-02-06 20:34:13 +00:00
|
|
|
"build": "tsc",
|
|
|
|
"postinstall": "tsc"
|
2022-01-30 17:44:50 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.jacknet.io/TerribleCodeClub/bennc-js"
|
|
|
|
},
|
|
|
|
"author": "Butlersaurus",
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
2022-02-01 02:12:49 +00:00
|
|
|
"@types/jest": "^27.4.0",
|
2022-01-30 17:44:50 +00:00
|
|
|
"jest": "^27.4.7",
|
|
|
|
"ts-jest": "^27.1.3",
|
2022-02-01 02:12:49 +00:00
|
|
|
"ts-standard": "^11.0.0",
|
2022-03-18 15:56:33 +00:00
|
|
|
"typescript": "^4.5.5"
|
2022-01-30 17:44:50 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"verbose": true,
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.ts?$": "ts-jest"
|
|
|
|
}
|
2022-02-01 02:12:49 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-06 20:34:13 +00:00
|
|
|
"color": "^4.2.0",
|
|
|
|
"@types/color": "^3.0.3",
|
2022-02-01 02:12:49 +00:00
|
|
|
"romulus-js": "git+https://git.jacknet.io/TerribleCodeClub/romulus-js.git"
|
2022-01-30 17:44:50 +00:00
|
|
|
}
|
|
|
|
}
|