UNPKG

2.8 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-s3",
3 "version": "0.5.1-master.20190912192008",
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 "proxy-agent": "^3.1.0"
37 },
38 "peerDependencies": {
39 "@atomist/automation-client": ">=1.7.0",
40 "@atomist/sdm": ">=1.7.0",
41 "@atomist/sdm-core": ">=1.7.0"
42 },
43 "devDependencies": {
44 "@atomist/automation-client": "^1.7.0",
45 "@atomist/sdm": "^1.7.0",
46 "@atomist/sdm-core": "^1.7.0",
47 "@types/mocha": "^5.2.5",
48 "@types/power-assert": "^1.5.0",
49 "espower-typescript": "^9.0.0",
50 "mocha": "^5.2.0",
51 "npm-run-all": "^4.1.5",
52 "power-assert": "^1.6.1",
53 "rimraf": "^2.6.2",
54 "supervisor": "^0.12.0",
55 "ts-node": "^8.3.0",
56 "tslint": "^5.19.0",
57 "typedoc": "^0.15.0",
58 "typescript": "^3.6.2"
59 },
60 "directories": {
61 "test": "test"
62 },
63 "scripts": {
64 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
65 "build": "run-s compile test lint doc",
66 "clean": "run-p clean:compile clean:test clean:doc clean:run",
67 "clean:compile": "rimraf git-info.json \"index.{d.ts,js}{,.map}\" \"{lib,test}/**/*.{d.ts,js}{,.map}\" lib/typings/types.ts",
68 "clean:dist": "run-s clean clean:npm",
69 "clean:doc": "rimraf doc",
70 "clean:npm": "rimraf node_modules",
71 "clean:run": "rimraf *-v8.log profile.txt log",
72 "clean:test": "rimraf .nyc_output coverage",
73 "compile": "run-s gql:gen compile:ts",
74 "compile:ts": "tsc --project .",
75 "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
76 "gql:gen": "atm-gql-gen",
77 "lint": "tslint --config tslint.json --format verbose --project .",
78 "lint:fix": "npm run lint -- --fix",
79 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
80 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
81 "typedoc": "npm run doc"
82 },
83 "engines": {
84 "node": ">=8.1.0",
85 "npm": ">=5.0.0"
86 }
87}