-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 KB
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
{
"name": "@seagull/application-loader",
"version": "0.1.0",
"description": "Loading a Seagull app from disk",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
"test:watch": "NODE_ENV=test mocha --opts test/mocha.opts --watch",
"docs": "typedoc --mode file --excludeExternals --excludePrivate --excludeNotExported --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seagull-js/application-loader.git"
},
"author": "Maximilian Stroh <hisako1337@gmail.com>",
"license": "LGPL-3.0",
"devDependencies": {
"@seagull/code-generators": "^0.4.1",
"@seagull/core": "^0.9.2",
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.103",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.100",
"aws-sdk": "^2.209.0",
"aws-sdk-mock": "^1.7.0",
"chai": "^4.1.2",
"mkdirp": "^0.5.1",
"mocha": "^5.0.1",
"mocha-typescript": "^1.1.12",
"mock-fs": "^4.4.2",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.8.0",
"typedoc": "^0.11.1",
"typescript": "^2.7.2"
},
"dependencies": {
"@seagull/package-config": "^0.3.5",
"cloudformation-declarations": "^0.1.2",
"lodash": "^4.17.5",
"require-from-string": "^2.0.1",
"typescript-memoize": "^1.0.0-alpha.3"
},
"peerDependencies": {
"aws-sdk": "^2.209.0"
}
}