1
0
Fork 0
js-utils/package.json

74 lines
2.1 KiB
JSON
Raw Normal View History

{
2020-03-28 19:38:17 +00:00
"name": "@apextoaster/js-utils",
2021-07-28 03:29:54 +00:00
"version": "0.4.0",
2020-03-28 19:38:17 +00:00
"description": "utility functions",
"type": "module",
2020-03-29 13:43:52 +00:00
"main": "out/main.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",
2021-12-14 20:58:41 +00:00
"@microsoft/api-documenter": "7.13.77",
"@microsoft/api-extractor": "7.19.2",
2022-01-26 13:21:56 +00:00
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.4",
2022-01-26 13:21:56 +00:00
"@types/mocha": "9.1.0",
"@types/mock-fs": "4.13.1",
"@types/node": "14.18.9",
2022-01-26 13:21:56 +00:00
"@types/sinon-chai": "3.2.8",
"@types/source-map-support": "0.5.4",
2022-01-30 05:46:35 +00:00
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/eslint-plugin-tslint": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
2021-09-10 04:08:40 +00:00
"c8": "7.9.0",
2022-01-26 13:21:56 +00:00
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
2022-01-30 05:46:35 +00:00
"eslint": "8.8.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-01-28 14:19:24 +00:00
"eslint-plugin-import": "2.25.4",
2022-01-30 05:46:35 +00:00
"eslint-plugin-mocha": "10.0.3",
2019-11-09 22:59:38 +00:00
"eslint-plugin-no-null": "1.0.2",
2022-01-28 14:19:24 +00:00
"eslint-plugin-sonarjs": "0.11.0",
"fast-check": "2.21.0",
2022-01-26 13:21:56 +00:00
"mocha": "9.2.0",
2021-07-25 22:52:19 +00:00
"mocha-foam": "0.1.8",
"mock-fs": "5.1.2",
"noicejs": "4.0.0",
"rollup": "2.57.0",
"rollup-plugin-commonjs": "10.1.0",
2019-11-09 22:59:38 +00:00
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-multi-entry": "2.1.0",
"rollup-plugin-node-externals": "2.2.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
2021-03-27 23:03:13 +00:00
"rollup-plugin-typescript2": "0.30.0",
"rollup-plugin-yaml": "2.0.0",
"sinon": "11.1.2",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.19",
"standard-version": "9.3.2",
"typescript": "4.4.3"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
}
}