UNPKG

3.99 kBJSONView Raw
1{
2 "name": "@atomist/sdm-core",
3 "version": "1.0.0-master.20180830125831",
4 "description": "Atomist Software Delivery Machine - Implementation",
5 "author": {
6 "name": "Atomist",
7 "email": "support@atomist.com",
8 "url": "https://atomist.com/"
9 },
10 "license": "Apache-2.0",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/atomist/sdm-core.git"
14 },
15 "keywords": [
16 "atomist",
17 "automation",
18 "sdm",
19 "ci",
20 "cd"
21 ],
22 "homepage": "https://github.com/atomist/sdm-core#readme",
23 "bugs": {
24 "url": "https://github.com/atomist/sdm-core/issues"
25 },
26 "dependencies": {
27 "@atomist/slack-messages": "^0.12.1",
28 "@octokit/rest": "^14.0.9",
29 "app-root-path": "^2.1.0",
30 "axios": "^0.18.0",
31 "chalk": "^2.4.1",
32 "copyfiles": "^2.0.0",
33 "fs-extra": "^7.0.0",
34 "json-stringify-safe": "^5.0.1",
35 "lodash": "^4.17.10",
36 "moment": "^2.22.2",
37 "moment-duration-format": "^2.2.2",
38 "npm": "^6.4.0",
39 "promise-retry": "^1.1.1",
40 "sprintf-js": "^1.1.1",
41 "tempfile": "^2.0.0",
42 "tmp-promise": "^1.0.4"
43 },
44 "peerDependencies": {
45 "@atomist/automation-client": "*",
46 "@atomist/sdm": "*"
47 },
48 "devDependencies": {
49 "@atomist/automation-client": "1.0.0-master.20180829070856",
50 "@atomist/sdm": "1.0.0-master.20180830103116",
51 "@types/lodash": "^4.14.116",
52 "@types/mocha": "^5.2.5",
53 "@types/node": "^10.7.1",
54 "@types/power-assert": "^1.4.29",
55 "axios-mock-adapter": "^1.15.0",
56 "espower-typescript": "^9.0.0",
57 "graphql-code-generator": "^0.8.19",
58 "istanbul": "^0.4.5",
59 "mocha": "^5.2.0",
60 "npm-run-all": "^4.1.3",
61 "nyc": "^11.8.0",
62 "power-assert": "^1.4.4",
63 "prettier": "^1.14.2",
64 "rimraf": "^2.6.2",
65 "supervisor": "^0.12.0",
66 "ts-node": "^7.0.1",
67 "tslint": "^5.10.0",
68 "typedoc": "^0.11.1",
69 "typescript": "^2.9.2",
70 "typescript-formatter": "^7.2.2"
71 },
72 "directories": {
73 "test": "test"
74 },
75 "scripts": {
76 "autostart": "npm-run-all --print-label --parallel watch:compile watch",
77 "autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
78 "build": "npm-run-all compile test lint doc",
79 "clean": "npm-run-all clean:js clean:build",
80 "clean:build": "rimraf *-v8.log profile.txt build coverage",
81 "clean:dist": "npm-run-all clean clean:npm",
82 "clean:js": "rimraf \"{src,test}/**/*.js\"",
83 "clean:npm": "rimraf node_modules",
84 "compile": "npm-run-all git:info compile:gql compile:ts",
85 "compile:gql": "npm-run-all gql:gen gql:copy",
86 "compile:ts": "tsc --project .",
87 "debug": "node $NODE_DEBUG_OPTION node_modules/@atomist/automation-client/start.client.js",
88 "doc": "typedoc --mode modules --excludeExternals --out build/typedoc src",
89 "fmt": "npm-run-all fmt:ts fmt:gql",
90 "fmt:ts": "tsfmt --replace",
91 "fmt:gql": "prettier --write \"**/*.graphql\"",
92 "git:info": "atm-git-info",
93 "gql:copy": "copyfiles \"./src/**/*.graphql\" build",
94 "gql:gen": "atm-gql-gen",
95 "lint": "npm-run-all lint:ts lint:gql",
96 "lint:ts": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"",
97 "lint:gql": "prettier --list-different \"src/graphql/**/*.graphql\"",
98 "lint:fix": "npm-run-all lint:ts:fix fmt:gql",
99 "lint:ts:fix": "npm run lint:ts -- --fix",
100 "package:copy": "copyfiles \"package.json\" build/src",
101 "test": "nyc mocha --exit --require ts-node/register --require source-map-support/register \"test/**/*.ts\"",
102 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
103 "typedoc": "npm run doc",
104 "watch:compile": "tsc --project . --watch",
105 "watch": "supervisor --watch build --quiet --exec npm -- run start"
106 },
107 "engines": {
108 "node": ">=8.0.0",
109 "npm": ">=5.0.0"
110 },
111 "nyc": {
112 "extension": [
113 ".ts"
114 ],
115 "exclude": [
116 "**/*.d.ts"
117 ],
118 "reporter": [
119 "html"
120 ],
121 "all": true
122 }
123}