-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.17 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@textpress/config",
"version": "0.9.0",
"description": "Config from local files with ability to pull values from SSM",
"main": "lib/index.js",
"scripts": {
"test": "DEBUG=textpress:* jest --coverage --colors",
"test-update-snapshots": "jest -u",
"bump": "gulp bump --part",
"build": "yarn build:clean && yarn build:lib && yarn build:docs",
"build:clean": "rimraf lib",
"build:lib": "babel -d lib src -s --ignore '**/__tests__/**' && cpx 'src/min-schema.json' 'lib/'",
"build:docs": "esdoc",
"ci-test": "jest",
"ci-build": "yarn build",
"ci-release-notes": "conventional-github-releaser -p eslint"
},
"jest": {
"coverageDirectory": "<rootDir>/.jest-coverage",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
],
"testPathIgnorePatterns": [
"\\.[^/]*/"
]
},
"dependencies": {
"convict": "4.x"
},
"peerDependencies": {
"@textpress/extendable-error": "*",
"aws-sdk": "*",
"bluebird": "*",
"debug": "*",
"lodash": "*",
"seamless-immutable": "*"
},
"devDependencies": {
"@textpress/babel-preset-textpress": "*",
"@textpress/eslint-config-textpress": "*",
"@textpress/extendable-error": "*",
"@textpress/gulp-bump-version": "*",
"aws-sdk": ">=2.114.0",
"bluebird": ">=3.5.0",
"chalk": "^2.3.2",
"conventional-github-releaser": "^2.0.0",
"cpx": "^1.5.0",
"debug": "^3.1.0",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.6.1",
"fancy-log": "^1.3.2",
"flow-bin": "^0.69.0",
"gulp": "4.0.2",
"gulp-confirm": "1.0.8",
"gulp-exec": "4.0.0",
"gulp-print": "5.0.2",
"jest": "^22.4.3",
"lodash": ">=4.17.4",
"merge-stream": "^1.0.1",
"plugin-error": "^1.0.1",
"rimraf": "^2.6.2",
"seamless-immutable": ">=7.1.2",
"sinon": "^4.1.2",
"yargs": "15.1.0"
}
}