-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@clappr/stats-plugin",
"version": "0.3.0",
"description": "clappr playback stats report plugin",
"main": "dist/clappr-stats.js",
"repository": {
"type": "git",
"url": "[email protected]:clappr/clappr-stats.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "karma start --single-run",
"test:watch": "karma start",
"watch": "webpack --progress --watch",
"start": "webpack-dev-server",
"build": "webpack --progress",
"release": "MINIMIZE=true webpack --progress"
},
"browser": {
"Clappr": "clappr"
},
"author": "[email protected]",
"license": "BSD-3-Clause",
"dependencies": {
"lodash.get": "^4.4.2"
},
"peerDependencies": {
"@clappr/core": "^0.8.0"
},
"devDependencies": {
"@clappr/core": "^0.8.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"directory-named-webpack-plugin": "^4.0.1",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.5",
"sinon": "^4.4.10",
"uglify-js": "^3.3.12",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.3.1"
}
}