This repository has been archived by the owner on Aug 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
97 lines (97 loc) · 3.25 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
92
93
94
95
96
97
{
"name": "ovh-ui-angular",
"description": "A set of maintainable components for the OVH ecosystem (Angular).",
"license": "BSD-3-Clause",
"author": "OVH SAS",
"version": "3.16.3",
"keywords": [
"angular"
],
"repository": "ovh-ux/ovh-ui-angular",
"main": "./dist/oui-angular.min.js",
"browser": "./dist/oui-angular.min.js",
"src": "./packages/oui-angular/src/index.js",
"scripts": {
"commit": "npm-scripts-config commit",
"commitmsg": "npm-scripts-config commitmsg",
"preversion": "npm run build && git add dist",
"version": "npm-scripts-config version",
"postversion": "git push && git push --tags",
"preview-changelog": "npm-scripts-config preview-changelog",
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rimraf dist",
"build:webpack": "webpack --progress --colors --config build/webpack.dist.config.js",
"build:watch": "webpack --progress --colors --config build/webpack.dist.config.js --watch",
"eslint": "eslint ./packages",
"eslint:fix": "eslint --fix ./packages",
"test": "cross-env NODE_ENV=test babel-node ./node_modules/karma/bin/karma start build/karma.conf.js --reporters spec,coverage --single-run",
"test:watch": "cross-env NODE_ENV=test BABEL_ENV=test node -r babel-register ./node_modules/karma/bin/karma start build/karma.conf.js --watch"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"bloodhound-js": "^1.2.3",
"clipboard": "^2.0.1",
"escape-string-regexp": "^1.0.5",
"popper.js": "^1.14.4",
"ui-select": "^0.19.8"
},
"peerDependencies": {
"angular": ">=1.6.x",
"angular-aria": ">=1.6.x",
"angular-sanitize": ">=1.6.x",
"flatpickr": "~4.5.2",
"ovh-ui-kit": "^2.32.0"
},
"devDependencies": {
"angular": ">=1.6.x",
"angular-aria": ">=1.6.x",
"angular-mocks": ">=1.6.x",
"angular-sanitize": ">=1.6.x",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-angularjs-annotate": "^0.10.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.2.0",
"eslint": "^4.3.0",
"eslint-config-ovh": "^0.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"flatpickr": "~4.5.2",
"html-loader": "^0.5.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.0-rc.2",
"lodash": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"npm-scripts-config": "^0.0.2",
"npm-scripts-conventional-changelog": "^0.1.0",
"rimraf": "^2.6.2",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.3.0",
"webpack-hot-middleware": "^2.24.0",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.10.0",
"yarn": ">= 0.17.0"
}
}