@atomist-seeds/spring-sdm
Version:
A seed SDM to deliver Spring and Spring Boot projects
107 lines (106 loc) • 3.44 kB
JSON
{
"name": "@atomist-seeds/spring-sdm",
"version": "1.0.0-master.20180914161757",
"description": "A seed SDM to deliver Spring and Spring Boot projects",
"author": {
"name": "Atomist",
"email": "support@atomist.com",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"homepage": "https://github.com/atomist-seeds/spring-sdm#readme",
"repository": {
"type": "git",
"url": "https://github.com/atomist-seeds/spring-sdm.git"
},
"bugs": {
"url": "https://github.com/atomist-seeds/spring-sdm/issues"
},
"keywords": [
"atomist",
"automation",
"sdm",
"seed",
"spring",
"spring-boot"
],
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@atomist/automation-client": "1.0.0-master.20180914123233",
"@atomist/sdm": "1.0.0-master.20180914160741",
"@atomist/sdm-core": "1.0.0-master.20180914124429",
"@atomist/sdm-pack-spring": "1.0.0-master.20180914134627",
"@types/dateformat": "^1.0.1",
"@types/lodash": "^4.14.108",
"dateformat": "^3.0.3",
"lodash": "^4.17.10",
"axios": "^0.18.0"
},
"devDependencies": {
"@atomist/sdm-local": "1.0.0-master.20180914124214",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"@types/power-assert": "^1.5.0",
"espower-typescript": "^9.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"power-assert": "^1.6.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"supervisor": "^0.12.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"directories": {
"test": "test"
},
"scripts": {
"autostart": "nodemon --watch index.ts --watch lib --ext ts --delay 4 --exec ts-node -- node_modules/@atomist/automation-client/bin/start.js",
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s compile test lint doc",
"clean": "run-p clean:compile clean:test clean:doc clean:run",
"clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
"clean:dist": "run-s clean clean:npm",
"clean:doc": "rimraf doc",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"clean:test": "rimraf .nyc_output coverage",
"compile": "run-s git:info gql:gen compile:ts",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"git:info": "atm-git-info",
"gql:gen": "atm-gql-gen",
"lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"start": "atm-start",
"test": "nyc mocha --require espower-typescript/guess --require source-map-support/register \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": ">=8.1.0",
"npm": ">=5.0.0"
},
"nyc": {
"include": [
"lib/**/*.*"
],
"extension": [
".ts"
],
"exclude": [
"lib/typings",
"**/*.d.ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true
}
}