UNPKG

2.67 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-s3",
3 "version": "0.1.0-master.20190228224538",
4 "description": "my new project",
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 "pack",
23 "sdm",
24 "aws"
25 ],
26 "main": "./index.js",
27 "types": "./index.d.ts",
28 "dependencies": {
29 "@atomist/slack-messages": "^1.1.0",
30 "aws-sdk": "^2.409.0",
31 "fs-extra": "^7.0.1",
32 "mime-types": "^2.1.22"
33 },
34 "peerDependencies": {
35 "@atomist/automation-client": "*",
36 "@atomist/sdm": "*",
37 "@atomist/sdm-core": "*"
38 },
39 "devDependencies": {
40 "@atomist/automation-client": "^1.2.0",
41 "@atomist/sdm": "^1.2.0",
42 "@atomist/sdm-core": "^1.2.0",
43 "@types/mime-types": "^2.1.0",
44 "@types/mocha": "^5.2.5",
45 "@types/power-assert": "^1.5.0",
46 "espower-typescript": "^9.0.0",
47 "mocha": "^5.2.0",
48 "npm-run-all": "^4.1.5",
49 "power-assert": "^1.6.1",
50 "rimraf": "^2.6.2",
51 "supervisor": "^0.12.0",
52 "ts-node": "^7.0.1",
53 "tslint": "^5.11.0",
54 "typedoc": "^0.13.0",
55 "typescript": "^3.1.6"
56 },
57 "directories": {
58 "test": "test"
59 },
60 "scripts": {
61 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
62 "build": "run-s compile test lint doc",
63 "clean": "run-p clean:compile clean:test clean:doc clean:run",
64 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
65 "clean:dist": "run-s clean clean:npm",
66 "clean:doc": "rimraf doc",
67 "clean:npm": "rimraf node_modules",
68 "clean:run": "rimraf *-v8.log profile.txt log",
69 "clean:test": "rimraf .nyc_output coverage",
70 "compile": "run-s gql:gen compile:ts",
71 "compile:ts": "tsc --project .",
72 "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
73 "gql:gen": "atm-gql-gen",
74 "lint": "tslint --config tslint.json --format verbose --project .",
75 "lint:fix": "npm run lint -- --fix",
76 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
77 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
78 "typedoc": "npm run doc"
79 },
80 "engines": {
81 "node": ">=8.1.0",
82 "npm": ">=5.0.0"
83 }
84}