forked from clappr/clappr-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.51 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
{
"name": "@clappr/plugins",
"version": "0.4.10",
"description": "Main plugins for the Clappr project",
"main": "./dist/clappr-plugins.js",
"module": "./dist/clappr-plugins.esm.js",
"scripts": {
"bundle-check": "ANALYZE_BUNDLE=true rollup -c",
"release": "MINIMIZE=true rollup -c",
"build": "rollup -c",
"watch": "rollup -c --watch",
"test": "NODE_ENV=test karma start --single-run",
"test:watch": "NODE_ENV=test karma start --no-single-run --watch",
"lint": "eslint *.js src/",
"lint:fix": "npm run lint -- --fix",
"start": "rollup -c rollup.config.dev.js --watch",
"commitzen": "git-cz"
},
"files": [
"/dist",
"/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:clappr/clappr-plugins.git"
},
"author": "Globo.com",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/clappr/clappr-plugins/issues"
},
"homepage": "https://github.com/clappr/clappr-plugins",
"peerDependencies": {
"@clappr/core": "^0.4.17"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@clappr/core": "^0.4.17",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"autoprefixer": "9.8.6",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"istanbul": "^0.4.5",
"karma": "^6.0.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"mocha": "^8.2.1",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"postcss-url": "^10.1.1",
"rollup": "^2.36.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-named-directory": "^1.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/*.test.js",
"**/*.spec.js",
"src/vendor",
"node_modules"
]
}
}