-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.41 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@wikia/post-quecast",
"version": "0.0.0-development",
"description": "Post message based queued broadcast.",
"contributors": [
"Damian Bielecki <dbielecki@fandom.com>"
],
"keywords": [
"typescript",
"broadcast",
"history",
"remember",
"iframe",
"post message",
"rxjs",
"queue"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Wikia/post-quecast.git"
},
"license": "MIT",
"files": [
"dist/",
"src/"
],
"main": "./dist/commonjs/index.js",
"module": "./dist/module/index.js",
"typings": "./dist/types/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.js",
"watch": "npm run build -- -w",
"lint": "tslint ./src/**/*.ts",
"lint:fix": "tslint --fix ./src/**/*.ts -t verbose",
"prettier": "prettier --write '**/*.{ts,js,json,css,scss,html}'",
"format": "npm run prettier && npm run lint:fix",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"e2e": "wdio test/wdio.conf.js",
"e2e:headless": "wdio test/wdio-headless.conf.js",
"e2e:ci": "start-server-and-test examples:prod http://localhost:8080 e2e:headless",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"examples:dev": "webpack-dev-server --config ./examples/webpack.config.js --progress",
"examples:prod": "webpack-dev-server --config ./examples/webpack.config.js -p --silent",
"examples:build": "webpack --config ./examples/webpack.config.js -p",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.6",
"@wdio/cli": "^6.1.25",
"@wdio/local-runner": "^6.1.25",
"@wdio/mocha-framework": "^6.1.19",
"@wdio/spec-reporter": "^6.1.23",
"@wdio/sync": "^6.1.14",
"awesome-typescript-loader": "^5.2.1",
"chromedriver": "^83.0.1",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"rxjs": "^6.6.0",
"semantic-release": "^17.1.1",
"source-map-support": "^0.5.19",
"start-server-and-test": "^1.11.0",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "1.18.0",
"typescript": "^3.9.6",
"wdio-chromedriver-service": "^6.0.3",
"webdriverio": "^6.1.25",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}