UNPKG

2.77 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-s3",
3 "version": "0.5.1-master.20190709172858",
4 "description": "SDM extension pack for publishing artifacts to AWS S3",
5 "author": {
6 "name": "Atomist",
7 "email": "jessitron@atomist.com",
8 "website": "https://atomist.com"
9 },
10 "license": "Apache-2.0",
11 "homepage": "https://github.com/atomist/sdm-pack-s3#readme",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/atomist/sdm-pack-s3.git"
15 },
16 "bugs": {
17 "url": "https://github.com/atomist/sdm-pack-s3/issues"
18 },
19 "keywords": [
20 "atomist",
21 "automation",
22 "aws",
23 "pack",
24 "s3",
25 "sdm"
26 ],
27 "main": "./index.js",
28 "types": "./index.d.ts",
29 "dependencies": {
30 "@atomist/slack-messages": "^1.1.1",
31 "@types/fs-extra": "^5.0.5",
32 "@types/mime-types": "^2.1.0",
33 "aws-sdk": "^2.409.0",
34 "fs-extra": "^7.0.1",
35 "mime-types": "^2.1.22"
36 },
37 "peerDependencies": {
38 "@atomist/automation-client": ">=1.5.1",
39 "@atomist/sdm": ">=1.5.0",
40 "@atomist/sdm-core": ">=1.5.0"
41 },
42 "devDependencies": {
43 "@atomist/automation-client": "^1.6.1",
44 "@atomist/sdm": "^1.6.0",
45 "@atomist/sdm-core": "^1.6.0",
46 "@types/mocha": "^5.2.5",
47 "@types/power-assert": "^1.5.0",
48 "espower-typescript": "^9.0.0",
49 "mocha": "^5.2.0",
50 "npm-run-all": "^4.1.5",
51 "power-assert": "^1.6.1",
52 "rimraf": "^2.6.2",
53 "supervisor": "^0.12.0",
54 "ts-node": "^8.0.3",
55 "tslint": "^5.15.0",
56 "typedoc": "^0.14.2",
57 "typescript": "^3.2.4"
58 },
59 "directories": {
60 "test": "test"
61 },
62 "scripts": {
63 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
64 "build": "run-s compile test lint doc",
65 "clean": "run-p clean:compile clean:test clean:doc clean:run",
66 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
67 "clean:dist": "run-s clean clean:npm",
68 "clean:doc": "rimraf doc",
69 "clean:npm": "rimraf node_modules",
70 "clean:run": "rimraf *-v8.log profile.txt log",
71 "clean:test": "rimraf .nyc_output coverage",
72 "compile": "run-s gql:gen compile:ts",
73 "compile:ts": "tsc --project .",
74 "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
75 "gql:gen": "atm-gql-gen",
76 "lint": "tslint --config tslint.json --format verbose --project .",
77 "lint:fix": "npm run lint -- --fix",
78 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
79 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
80 "typedoc": "npm run doc"
81 },
82 "engines": {
83 "node": ">=8.1.0",
84 "npm": ">=5.0.0"
85 }
86}