mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-09 19:22:51 +00:00
build: correctly list dev dependencies
This commit is contained in:
297
package-lock.json
generated
297
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -36,22 +36,18 @@
|
||||
"tslint": "tslint 'src/**/*.ts'"
|
||||
},
|
||||
"dependencies": {
|
||||
"@krlwlfrt/async-pool": "0.0.3",
|
||||
"@openstapps/logger": "0.0.5",
|
||||
"@types/chai": "4.1.7",
|
||||
"@types/glob": "7.1.1",
|
||||
"@types/mocha": "5.2.6",
|
||||
"@types/mustache": "0.8.32",
|
||||
"@types/node": "10.14.4",
|
||||
"ajv": "6.10.0",
|
||||
"async-pool-native": "0.1.0",
|
||||
"chai": "4.2.0",
|
||||
"commander": "2.20.0",
|
||||
"del": "4.1.0",
|
||||
"glob": "7.1.3",
|
||||
"humanize-string": "2.1.0",
|
||||
"jsonschema": "1.2.4",
|
||||
"mocha": "6.1.1",
|
||||
"mocha-typescript": "1.1.17",
|
||||
"mustache": "3.0.1",
|
||||
"toposort": "2.0.2",
|
||||
"ts-json-schema-generator": "0.40.0",
|
||||
@@ -60,7 +56,11 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.8.0",
|
||||
"@types/chai": "4.1.7",
|
||||
"@types/mocha": "5.2.6",
|
||||
"conventional-changelog-cli": "2.0.12",
|
||||
"mocha": "6.1.1",
|
||||
"mocha-typescript": "1.1.17",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"rimraf": "2.6.3",
|
||||
"tslint": "5.15.0",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* 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 {logger, NodesWithMetaInformation, NodeWithMetaInformation, RouteWithMetaInformation} from './common';
|
||||
|
||||
|
||||
@@ -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
|
||||
* under the terms of the GNU General Public License as published by the Free
|
||||
* Software Foundation, version 3.
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* 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 {Schema, Validator as JSONSchemaValidator, ValidatorResult} from 'jsonschema';
|
||||
import * as mustache from 'mustache';
|
||||
|
||||
Reference in New Issue
Block a user