forked from architect/architect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 3.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@architect/architect",
"version": "5.9.23",
"description": "Create, deploy, and maintain next-generation AWS cloud function-based serverless infrastructure with full local, offline workflows, and more.",
"main": "index",
"bin": {
"arc-audit": "./src/audit/cli.js",
"arc-config": "./src/config/cli.js",
"arc-create": "./src/create/cli.js",
"arc-deploy": "./src/deploy/cli.js",
"arc-dns": "./src/dns/cli.js",
"arc-env": "./src/env/cli.js",
"arc-help": "./src/help/cli.js",
"arc-hydrate": "./src/hydrate/cli.js",
"arc-inventory": "./src/inventory/cli.js",
"arc-sandbox": "./src/sandbox/cli.js",
"arc-logs": "./src/logs/cli.js",
"arc-version": "./src/version/cli.js",
"arc-repl": "./src/repl/cli.js",
"arc-package": "./src/package/cli.js",
"arc-init": "./src/init/cli.js",
"audit": "./src/audit/cli.js",
"config": "./src/config/cli.js",
"create": "./src/create/cli.js",
"deploy": "./src/deploy/cli.js",
"dns": "./src/dns/cli.js",
"env": "./src/env/cli.js",
"help": "./src/help/cli.js",
"hydrate": "./src/hydrate/cli.js",
"inventory": "./src/inventory/cli.js",
"logs": "./src/logs/cli.js",
"tags": "./src/tags/cli.js",
"version": "./src/version/cli.js",
"sandbox": "./src/sandbox/cli.js",
"repl": "./src/repl/cli.js",
"package": "./src/package/cli.js",
"init": "./src/init/cli.js"
},
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run test:unit",
"test:slow": "npm run test:integration:hydrate",
"test:integration:scheduled": "NODE_ENV=testing tape test/slow/create/03-scheduled.js | tap-spec",
"test:integration:config": "NODE_ENV=testing tape test/slow/config/*-test.js | tap-spec",
"test:integration:queues": "NODE_ENV=testing tape test/slow/create/07-queues.js | tap-spec",
"test:integration:tables": "NODE_ENV=testing tape test/slow/create/04-tables.js | tap-spec",
"test:integration:package": "NODE_ENV=testing tape test/slow/package/package-test.js | tap-spec",
"test:integration:hydrate": "NODE_ENV=testing tape test/slow/hydrate/hydrate.js | tap-spec",
"test:unit": "cross-env NODE_ENV=testing tape 'test/fast/**/*test.js' | tap-spec",
"test:coverage": "cross-env NODE_ENV=testing nyc tape 'test/**/*test.js' | tap-nyc"
},
"keywords": [
"aws",
"lambda",
"amazon",
"serverless",
"cloud",
"cloud functions",
"api gateway",
"dynamodb",
"s3",
"sns",
"api gateway",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/architect/architect.git"
},
"author": "Brian LeRoux <b@brian.io>",
"license": "Apache-2.0",
"homepage": "https://arc.codes",
"dependencies": {
"@architect/data": "^2.1.0",
"@architect/parser": "^1.1.7",
"@architect/sandbox": "^1.2.6",
"@architect/utils": "^1.2.3",
"@smallwins/validate": "^4.3.0",
"aws-sdk": "^2.488.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"cpr": "^3.0.1",
"dynalite": "^2.3.1",
"finalhandler": "^1.1.2",
"glob": "^7.1.4",
"inquirer": "^6.3.1",
"is-domain-name": "^1.0.1",
"log-update": "^3.2.0",
"mime-types": "^2.1.24",
"mkdirp": "^0.5.1",
"path-exists": "^4.0.0",
"path-sort": "^0.1.0",
"router": "^1.3.3",
"run-parallel": "^1.1.9",
"run-series": "^1.1.8",
"run-waterfall": "^1.1.6",
"send": "^0.17.1",
"shallow-equal": "^1.2.0",
"slugify": "^1.3.4",
"strftime": "^0.10.0",
"uuid": "^3.3.2",
"ws": "^7.0.1",
"zip-dir": "^1.0.2",
"zipit": "^1.0.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"tap-nyc": "^1.0.3",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"tiny-json-http": "^7.1.2"
}
}