-
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.66 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.66 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": "@textpress/textpress-http-errors",
"version": "0.3.0",
"main": "lib/index.js",
"repository": "git@github.com:textpress/textpress-http-errors.git",
"scripts": {
"test": "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__/**'",
"build:docs": "esdoc",
"ci-test": "true",
"ci-build": "yarn build",
"ci-release-notes": "conventional-github-releaser -p eslint"
},
"jest": {
"coverageDirectory": "<rootDir>/.jest-coverage",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"peerDependencies": {
"@textpress/extendable-error": "*"
},
"devDependencies": {
"@textpress/babel-preset-textpress": "*",
"@textpress/eslint-config-textpress": "*",
"@textpress/extendable-error": "*",
"@textpress/gulp-bump-version": "*",
"chalk": "^2.3.2",
"conventional-github-releaser": "^2.0.0",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.9.0",
"fancy-log": "^1.3.2",
"gulp": "4.0.2",
"gulp-confirm": "1.0.8",
"gulp-exec": "4.0.0",
"gulp-print": "5.0.2",
"jest": "^22.0.5",
"jest-cli": "^22.0.5",
"lodash": "^4.17.5",
"plugin-error": "^1.0.1",
"rimraf": "^2.6.2",
"yargs": "15.1.0"
}
}