-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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
{
"name": "promise-callbacks",
"version": "3.8.2",
"description": "Utilities to help convert a callback-using codebase to promises.",
"engines": {
"node": ">=6.9.0"
},
"main": "./dist/index.js",
"scripts": {
"build": "rollup -c",
"ci": "npm run lint && npm test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"example": "node ./example/app.js",
"lint": "eslint .",
"prepublishOnly": "npm run build && if [ \"$CI\" = '' ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"pretest": "npm run build",
"semantic-release": "semantic-release",
"test": "jest --env jsdom && jest --env node"
},
"files": [
"dist"
],
"keywords": [
"callbacks",
"promises",
"async",
"await",
"es2017",
"es8"
],
"author": "Jeff Wear <[email protected]> (https://mixmax.com)",
"contributors": [
"Eli Skeggs <[email protected]> (https://eliskeggs.com)"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@mixmaxhq/commitlint-jenkins": "^1.4.4",
"@mixmaxhq/git-hooks": "^1.2.0",
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/semantic-release-config": "^2.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^4.10.0",
"express": "^4.17.1",
"jest": "^25.2.7",
"prettier": "^2.2.1",
"rollup": "^2.6.0",
"rollup-plugin-babel": "^4.4.0",
"semantic-release": "^17.2.3"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"object.getownpropertydescriptors": "2.1.0"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/mixmaxhq/promise-callbacks.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
},
"publishConfig": {
"access": "public"
}
}