1
0
Fork 0
js-utils/package.json

65 lines
1.8 KiB
JSON
Raw Normal View History

{
2020-03-28 19:38:17 +00:00
"name": "@apextoaster/js-utils",
2022-10-08 21:14:49 +00:00
"version": "0.5.0",
2020-03-28 19:38:17 +00:00
"description": "utility functions",
"type": "module",
2022-10-08 20:42:52 +00:00
"main": "out/src/index.js",
"types": "out/index.d.ts",
"typings": "out/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "make test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
2020-03-28 19:38:17 +00:00
"url": "git+https://github.com/ssube/js-utils.git"
},
"author": "ssube",
"license": "MIT",
"devDependencies": {
2022-01-26 13:21:56 +00:00
"@istanbuljs/nyc-config-typescript": "1.0.2",
2022-01-30 17:09:21 +00:00
"@istanbuljs/schema": "0.1.3",
2023-01-02 03:48:57 +00:00
"@microsoft/api-documenter": "7.19.27",
"@microsoft/api-extractor": "7.33.7",
2022-11-19 16:36:36 +00:00
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/mocha": "10.0.1",
"@types/mock-fs": "4.13.1",
"@types/node": "18.13.0",
2022-11-19 16:36:36 +00:00
"@types/sinon-chai": "3.2.9",
"@types/source-map-support": "0.5.6",
2023-01-02 03:09:54 +00:00
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/eslint-plugin-tslint": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"c8": "7.12.0",
2022-11-19 16:36:36 +00:00
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
2023-01-02 03:09:54 +00:00
"eslint": "8.31.0",
2019-11-09 22:59:38 +00:00
"eslint-plugin-chai": "0.0.1",
2022-01-30 05:46:35 +00:00
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-chai-expect-keywords": "2.1.0",
2022-04-22 22:20:51 +00:00
"eslint-plugin-import": "2.26.0",
2022-07-30 13:35:55 +00:00
"eslint-plugin-mocha": "10.1.0",
2019-11-09 22:59:38 +00:00
"eslint-plugin-no-null": "1.0.2",
2023-01-02 03:09:54 +00:00
"eslint-plugin-sonarjs": "0.17.0",
"fast-check": "3.6.3",
"mocha": "10.2.0",
"mocha-foam": "0.1.10",
"mock-fs": "5.2.0",
"noicejs": "4.0.0",
2022-11-19 16:36:36 +00:00
"sinon": "14.0.2",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"standard-version": "9.5.0",
"typescript": "4.9.5"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
}
}