doctest-ts/package.json

61 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2017-11-02 15:46:19 +01:00
{
2018-02-14 16:14:36 +01:00
"$schema": "http://json.schemastore.org/package",
2022-03-25 15:47:14 +01:00
"name": "doctest-ts-improved",
"version": "0.9.0",
2022-03-25 15:47:14 +01:00
"description": "doctest support for typescript with Mocha",
2017-11-02 15:46:19 +01:00
"main": "src/main.ts",
"bin": {
2022-03-25 15:52:36 +01:00
"doctest-ts-improved": "dist/main.js"
2017-11-02 15:46:19 +01:00
},
"scripts": {
2022-03-25 15:52:36 +01:00
"build": "tsc && chmod 755 dist/main.js",
2022-04-08 04:39:17 +02:00
"gen": "ts-node src/main.ts",
2022-03-25 15:47:14 +01:00
"test": "ts-node src/main.ts examples/ && ts-node src/main.ts src/ && mocha --require ts-node/register examples/*.ts src/*.ts",
2022-03-25 16:36:18 +01:00
"prettier": "rm -v -f {src,test}/*doctest.ts && prettier --list-different --write src/*ts* test/*ts*",
2022-04-08 04:39:17 +02:00
"publish": "npm run test && npm run build && npm publish"
2017-11-02 15:46:19 +01:00
},
"repository": {
"type": "git",
"url": "forgejo@source.mapcomplete.org:MapComplete/doctest-ts.git"
2017-11-02 15:46:19 +01:00
},
"keywords": [
"doctest",
"typescript",
"testing"
],
"author": "Dan Rosén, Pieter Vander Vennet",
2017-11-02 15:46:19 +01:00
"license": "MIT",
"bugs": {
"url": "https://source.mapcomplete.org/MapComplete/doctest-ts/issues"
2017-11-02 15:46:19 +01:00
},
"homepage": "https://source.mapcomplete.org/MapComplete/doctest-ts",
2017-11-02 15:46:19 +01:00
"dependencies": {
2022-03-25 15:47:14 +01:00
"@types/chai": "^4.3.0",
"chai": "^4.3.6",
2018-02-14 17:14:12 +01:00
"global": "^4.3.2",
2022-03-25 15:47:14 +01:00
"mocha": "^9.2.2",
2022-04-08 04:39:17 +02:00
"process-yargs-parser": "^2.1.0",
2022-03-17 21:08:59 +01:00
"typescript": "^4.6.2"
2017-11-02 15:46:19 +01:00
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
2018-02-14 16:14:36 +01:00
"@types/minimist": "^1.2.0",
2022-03-25 15:47:14 +01:00
"@types/mocha": "^9.1.0",
"@types/node": "^9.4.6",
2018-02-14 16:14:36 +01:00
"@types/tape": "^4.2.31",
"faucet": "^0.0.1",
"prettier": "^1.11.0",
2018-02-14 16:14:36 +01:00
"tap-diff": "^0.1.1",
"tape": "^4.9.0",
"ts-node": "^5.0.0"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"jsxBracketSameLine": true,
"bracketSpacing": false
2017-11-02 15:46:19 +01:00
}
}