Files
openstapps/package.json
Karl-Philipp Wulfert a2ab90656f build: update dependencies
2019-01-08 14:40:46 +01:00

65 lines
2.1 KiB
JSON

{
"name": "@openstapps/core",
"version": "0.1.0",
"description": "StAppsCore - Generalized model of data",
"keywords": [
"Model",
"StApps"
],
"repository": {
"type": "git",
"url": "git@gitlab.com:openstapps/core.git"
},
"license": "GPL-3.0-only",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npm run tslint && npm run compile && npm run pack && npm run schema && npm run documentation",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"compile": "tsc && rimraf lib/cli.js lib/common.js lib/types.js",
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
"pack": "openstapps-pack",
"prepareOnly": "npm run build",
"schema": "NODE_OPTIONS='--max-old-space-size=8192' openstapps-convert ./src/core ./lib/schema ./src/core/things/ ./src/core/protocol/ ./src/core/files/",
"test": "TS_NODE_COMPILER_OPTIONS='{\"noUnusedLocals\": false}' mocha --require ts-node/register --ui mocha-typescript test/*.spec.ts",
"tslint": "tslint 'src/**/*.ts'"
},
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com",
"contributors": [
"Anselm Stordeur <anselmstordeur@gmail.com>",
"Jovan Krunic <jovan.krunic@gmail.com>",
"Andreas Lehmann",
"Sebastian Lange",
"Rainer Killinger",
"Imran Hossain"
],
"dependencies": {
"@types/geojson": "1.0.6",
"@types/json-patch": "0.0.30",
"json-patch": "0.7.0",
"jsonschema": "1.2.4"
},
"devDependencies": {
"@openstapps/configuration": "0.5.0",
"@openstapps/core-tools": "0.1.0",
"@openstapps/logger": "0.0.3",
"@openstapps/projectmanagement": "0.1.2",
"@types/chai": "4.1.7",
"@types/humanize-string": "1.0.0",
"@types/node": "10.12.18",
"@types/rimraf": "2.0.2",
"async-pool-native": "0.1.0",
"chai": "4.2.0",
"commander": "2.19.0",
"conventional-changelog-cli": "2.0.11",
"humanize-string": "1.0.2",
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
"rimraf": "2.6.3",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"typedoc": "0.14.0",
"typescript": "3.2.2"
}
}