-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 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
{
"name": "publication-client",
"version": "3.2.4",
"description": "A client for a publication-server",
"main": "dist/browser/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "[ \"$WATCH\" == 'true' ] && rollup -cw || rollup -c",
"ci:commitlint": "commitlint-jenkins --pr-only",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run build && if [ \"$CI\" = '' ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"semantic-release": "SEMANTIC_COMMITLINT_SKIP=987b5c1 semantic-release",
"lint": "eslint .",
"test": "jest",
"ci": "npm run lint && npm run test",
"watch": "WATCH=true npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/publication-client.git"
},
"author": "Trey Tacon <[email protected]> (https://mixmax.com)",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.1.1",
"eventemitter3": "^2.0.2",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@mixmaxhq/commitlint-jenkins": "^1.6.0",
"@mixmaxhq/git-hooks": "^1.0.1",
"@mixmaxhq/jest-coverage-config": "^2.0.1",
"@mixmaxhq/jest-junit-config": "^1.0.0",
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/semantic-release-config": "^2.0.1",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^4.6.0",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"prettier": "^1.19.1",
"rollup": "^0.41.4",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^4.3.1",
"semantic-release": "^17.3.8",
"underscore": "^1.9.1"
},
"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"
}
}