-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.95 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
{
"name": "ssm-params-convict-adapter",
"version": "0.0.12",
"description": "Allows loading ssm parameters via convict",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engine-strict": true,
"engines": {
"node": ">=6.12.3"
},
"scripts": {
"prepublishOnly": "ts-node accessories/prepublish-log.ts && npm run build",
"build": "ts-node accessories/building-log.ts && npm run clean-build && npm run lint && ts-node accessories/real-build-log.ts && tsc && npm run copy-json",
"lint": "ts-node accessories/formatting-log.ts && prettier --use-tabs --single-quote --tab-width 4 --write src/**/* typings/**/* tests/**/* && ts-node accessories/linting-log.ts && tslint -c tslint.json -p tsconfig.json -t stylish --fix src/**/*",
"lint-noFix": "ts-node accessories/lint-noFix-log.ts && prettier --use-tabs --single-quote --tab-width 4 src/**/* typings/**/* tests/**/* && tslint -c tslint.json -p tsconfig.json -t stylish src/**/*",
"test": "ts-node accessories/test-log.ts && cross-env NODE_ENV=test mocha tests/ --compilers ts:ts-node/register,tsx:ts-node/register --recursive --reporter spec",
"test-watch": "ts-node accessories/test-watch-log.ts && cross-env NODE_ENV=test mocha tests/ --compilers ts:ts-node/register,tsx:ts-node/register --recursive --reporter spec --watch",
"preCommit-msg": "ts-node accessories/pre-commit-log.ts",
"copy-json": "gulp copy-json",
"clean-build": "gulp clean-build",
"install-peers": "npm-install-peers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agalazis/ssm-params-convict-adapter.git"
},
"author": "Andreas Galazis <[email protected]> (https://twitter.com/agalazis)",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/agalazis/ssm-params-convict-adapter/issues"
},
"homepage": "https://github.com/agalazis/ssm-params-convict-adapter#readme",
"dependencies": {
"aws-ssm-parameters-injector": "^1.0.8",
"debug": "^3.1.0",
"lodash": "^4.17.4",
"winston": "2.4"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.0.1",
"@types/convict": "^4.1.1",
"@types/del": "^3.0.0",
"@types/gulp": "^4.0.4",
"@types/lodash": "^4.14.86",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.5",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^2.7.29",
"@types/winston": "^2.3.7",
"chai": "^4.1.0",
"concurrently": "^3.5.0",
"cross-env": "^5.0.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cli": "^1.4.0",
"lme": "^1.5.3",
"mocha": "^3.4.2",
"npm-install-peers": "^1.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"proxyquire": "^1.8.0",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2"
},
"pre-commit": [
"preCommit-msg",
"lint-noFix"
],
"peerDependencies": {
"aws-sdk": "^2.178.0",
"convict": "^4.0.1"
}
}