-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "@clappr/core",
"version": "0.7.2",
"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 --bundleConfigAsCjs",
"release": "MINIMIZE=true rollup --config --bundleConfigAsCjs",
"build": "rollup --config --bundleConfigAsCjs",
"watch": "rollup --config --watch --bundleConfigAsCjs",
"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 --bundleConfigAsCjs",
"commitzen": "git-cz",
"prepublishOnly": "npm run release"
},
"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.22.17",
"@babel/preset-env": "^7.22.15",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"autoprefixer": "10.4.15",
"babel-jest": "^29.7.0",
"clappr-zepto": "0.0.7",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-directory-named-resolver": "^0.3.0",
"jest-mock-console": "^2.0.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.29",
"rollup": "^3.29.1",
"rollup-plugin-filesize": "^10.0.0",
"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": "^2.0.2",
"rollup-plugin-sizes": "^1.0.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}