-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.97 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
{
"name": "@mailonline/video-ad-sdk",
"version": "0.0.0-development",
"description": "Video ad SDK to load and play video ads",
"keywords": [
"vast",
"vpaid",
"ads",
"video"
],
"author": "MailOnline <fe@mailonline.co.uk>",
"main": "dist/main.cjs.js",
"module": "dist/main.esm.js",
"browser": "dist/main.umd.js",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"demo": "cross-env NODE_ENV=production webpack --mode=production",
"commitmsg": "commitlint -e $GIT_PARAMS",
"dev": "rollup -c",
"docs": "jsdoc -c jsdoc.json",
"pages": "yarn build && rimraf pages && yarn demo && yarn docs",
"lint": "eslint --ignore-path ./.gitignore './**/*.js'",
"prebuild": "rimraf dist",
"precommit": "yarn lint",
"prepush": "yarn test",
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development",
"test": "cross-env NODE_ENV=test jest",
"semantic-release": "semantic-release"
},
"files": [
"src",
"dist"
],
"bugs": {
"url": "https://github.com/MailOnline/mol-video-ad-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MailOnline/mol-video-ad-sdk.git"
},
"homepage": "https://github.com/MailOnline/mol-video-ad-sdk#readme",
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
},
"commitlint": {
"extends": [
"./node_modules/mol-commitlint-config"
]
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"babel-core": "^6.25.0",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-mailonline": "^9.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"jest": "^23.4.2",
"jest-environment-jsdom": "^23.4.0",
"jsdoc": "^3.5.5",
"lodash.debounce": "^4.0.8",
"mini-css-extract-plugin": "^0.4.5",
"mockdate": "^2.0.2",
"mol-commitlint-config": "^1.1.0",
"mol-conventional-changelog": "^1.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"rimraf": "^2.6.2",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^1.0.1",
"sane-domparser-error": "^0.2.0",
"semantic-release": "^15.12.1",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"whatwg-fetch": "^2.0.4",
"braintree-jsdoc-template": "^3.3.0"
}
}