forked from clappr/clappr-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.36 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
{
"name": "@clappr/core",
"version": "0.4.27",
"description": "Core components of the extensible media player for the web",
"main": "./dist/clappr-core.js",
"module": "./dist/clappr-core.esm.js",
"scripts": {
"bundle-check": "ANALYZE_BUNDLE=true rollup --config",
"release": "MINIMIZE=true rollup --config",
"build": "rollup --config",
"watch": "rollup --config --watch",
"test": "jest /src --coverage --silent",
"test:coverage": "open coverage/lcov-report/index.html",
"test:debug": "node --inspect node_modules/.bin/jest src/ --runInBand",
"test:watch": "jest /src --watch",
"lint": "eslint *.js src/",
"lint:fix": "npm run lint -- --fix",
"start": "DEV=true rollup --config --watch",
"commitzen": "git-cz",
"prepublishOnly": "npm run release"
},
"engines": {
"node": "^v14.0.0"
},
"files": [
"/dist",
"/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:clappr/clappr-core.git"
},
"author": "Globo.com",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/clappr/clappr-core/issues"
},
"homepage": "https://github.com/clappr/clappr-core",
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"autoprefixer": "10.4.2",
"babel-jest": "^26.6.3",
"clappr-zepto": "0.0.7",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"html-loader": "0.5.5",
"jest": "^26.6.3",
"jest-directory-named-resolver": "^0.3.0",
"jest-mock-console": "^1.0.1",
"node-sass": "^7.0.1",
"postcss": "^8.4.6",
"rollup": "^2.67.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-named-directory": "^1.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}