This repository was archived by the owner on Mar 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.27 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.27 KB
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
99
100
101
102
103
104
105
{
"name": "webcom-reach",
"version": "3.6.0",
"description": "Webcom-reach",
"main": "dist/reach.js",
"repository": {
"type": "git",
"url": "git+https://github.com/webcom-components/reach.git"
},
"author": "Webcom <webcom.ops@orange.com>",
"license": "MIT",
"schema": {
"version": "draft-00",
"url": "https://webcom-components.github.io/reach-schema/#draft-00",
"rules": "https://webcom-components.github.io/reach-schema/draft-00/security/rules.json"
},
"scripts": {
"dev": "webpack --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production",
"lint": "eslint src test",
"test": "karma start --auto-watch --no-single-run",
"test:ci": "karma start --no-auto-watch --single-run --ci",
"test:sauce": "karma start --no-auto-watch --single-run --sauce",
"docs": "rimraf esdoc/* && esdoc",
"predeploy-docs": "yarn docs",
"deploy-docs": "node deploy-gh-pages.js",
"semantic-release": "semantic-release",
"cz": "git-cz",
"postversion": "yarn build && yarn deploy-docs"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@commitlint/cli": "^7.4.0",
"@commitlint/config-conventional": "^7.3.1",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.3.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"puppeteer": "^1.11.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"shelljs": "^0.8.3",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"core-js": "^2.6.2",
"dotenv": "^6.2.0",
"getstats": "^1.2.0",
"socket.io-client": "^2.2.0",
"webcom": "^2.6.1",
"webrtc-adapter": "^7.1.1"
}
}