@atomist/sdm-pack-node
Version:
Extension pack for an Atomist SDM to work with Node.js projects
98 lines (97 loc) • 3.12 kB
JSON
{
"name": "@atomist/sdm-pack-node",
"version": "1.1.1",
"description": "Extension pack for an Atomist SDM to work with Node.js projects",
"author": {
"name": "Atomist",
"email": "support@atomist.com",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"homepage": "https://github.com/atomist/sdm-pack-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/atomist/sdm-pack-node.git"
},
"keywords": [
"atomist",
"automation",
"sdm",
"extension",
"pack",
"node",
"npm",
"typescript"
],
"bugs": {
"url": "https://github.com/atomist/sdm-pack-node/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@types/fs-extra": "^8.0.0",
"@types/hasha": "^3.0.1",
"@types/lodash": "^4.14.136",
"@types/strip-ansi": "^5.2.1",
"app-root-path": "^2.2.1",
"base64url": "^3.0.1",
"fs-extra": "^8.1.0",
"hasha": "^5.0.0",
"license-checker": "^25.0.1",
"lodash": "^4.17.13",
"spdx-license-list": "^6.0.0",
"strip-ansi": "^5.2.0"
},
"peerDependencies": {
"@atomist/automation-client": ">=1.6.1",
"@atomist/sdm": ">=1.6.0",
"@atomist/sdm-core": ">=1.6.0",
"@atomist/sdm-pack-build": ">=1.0.4",
"@atomist/slack-messages": ">=1.1.1"
},
"devDependencies": {
"@atomist/automation-client": "^1.6.1",
"@atomist/sdm": "^1.6.0",
"@atomist/sdm-core": "^1.6.0",
"@atomist/sdm-pack-build": "^1.0.4",
"@atomist/slack-messages": "^1.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.2",
"@types/power-assert": "^1.5.0",
"espower-typescript": "^9.0.2",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"rimraf": "^2.6.3",
"supervisor": "^0.12.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.3"
},
"directories": {
"test": "test"
},
"scripts": {
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "npm-run-all compile test lint doc",
"clean": "npm-run-all clean:compile clean:doc clean:run",
"clean:compile": "rimraf build git-info.json \"index.{d.ts,js*}\" \"{lib,test}/**/*.{d.ts,js*}\" lib/typings/types.ts",
"clean:dist": "npm-run-all clean clean:npm",
"clean:doc": "rimraf doc",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"compile": "npm-run-all compile:ts",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"lint": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}