build: correctly list dev dependencies

This commit is contained in:
Karl-Philipp Wulfert
2019-04-08 11:21:26 +02:00
parent e34ac4308e
commit cbe465efd5
5 changed files with 217 additions and 96 deletions

297
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -36,22 +36,18 @@
"tslint": "tslint 'src/**/*.ts'" "tslint": "tslint 'src/**/*.ts'"
}, },
"dependencies": { "dependencies": {
"@krlwlfrt/async-pool": "0.0.3",
"@openstapps/logger": "0.0.5", "@openstapps/logger": "0.0.5",
"@types/chai": "4.1.7",
"@types/glob": "7.1.1", "@types/glob": "7.1.1",
"@types/mocha": "5.2.6",
"@types/mustache": "0.8.32", "@types/mustache": "0.8.32",
"@types/node": "10.14.4", "@types/node": "10.14.4",
"ajv": "6.10.0", "ajv": "6.10.0",
"async-pool-native": "0.1.0",
"chai": "4.2.0", "chai": "4.2.0",
"commander": "2.20.0", "commander": "2.20.0",
"del": "4.1.0", "del": "4.1.0",
"glob": "7.1.3", "glob": "7.1.3",
"humanize-string": "2.1.0", "humanize-string": "2.1.0",
"jsonschema": "1.2.4", "jsonschema": "1.2.4",
"mocha": "6.1.1",
"mocha-typescript": "1.1.17",
"mustache": "3.0.1", "mustache": "3.0.1",
"toposort": "2.0.2", "toposort": "2.0.2",
"ts-json-schema-generator": "0.40.0", "ts-json-schema-generator": "0.40.0",
@@ -60,7 +56,11 @@
}, },
"devDependencies": { "devDependencies": {
"@openstapps/configuration": "0.8.0", "@openstapps/configuration": "0.8.0",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"conventional-changelog-cli": "2.0.12", "conventional-changelog-cli": "2.0.12",
"mocha": "6.1.1",
"mocha-typescript": "1.1.17",
"prepend-file-cli": "1.0.6", "prepend-file-cli": "1.0.6",
"rimraf": "2.6.3", "rimraf": "2.6.3",
"tslint": "5.15.0", "tslint": "5.15.0",

View File

@@ -12,7 +12,7 @@
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>. * this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import {asyncPool} from 'async-pool-native/dist/async-pool'; import {asyncPool} from '@krlwlfrt/async-pool';
import {ProjectReflection} from 'typedoc'; import {ProjectReflection} from 'typedoc';
import {logger, NodesWithMetaInformation, NodeWithMetaInformation, RouteWithMetaInformation} from './common'; import {logger, NodesWithMetaInformation, NodeWithMetaInformation, RouteWithMetaInformation} from './common';

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2018 StApps * Copyright (C) 2018, 2019 StApps
* This program is free software: you can redistribute it and/or modify it * This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free * under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3. * Software Foundation, version 3.

View File

@@ -12,7 +12,7 @@
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>. * this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import {asyncPool} from 'async-pool-native/dist/async-pool'; import {asyncPool} from '@krlwlfrt/async-pool';
import {PathLike} from 'fs'; import {PathLike} from 'fs';
import {Schema, Validator as JSONSchemaValidator, ValidatorResult} from 'jsonschema'; import {Schema, Validator as JSONSchemaValidator, ValidatorResult} from 'jsonschema';
import * as mustache from 'mustache'; import * as mustache from 'mustache';