This repository has been archived by the owner on May 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "@ovh-ux/ng-ovh-utils",
"version": "14.0.6",
"description": "[DEPRECATED] A collection of directives for AngularJS.",
"keywords": [
"angularjs",
"ovh",
"ovhcloud",
"utils"
],
"repository": "ovh-ux/ng-ovh-utils",
"license": "BSD-3-Clause",
"author": "OVH SAS",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/umd/ng-ovh-utils.js",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -cw --environment BUILD:development",
"lint": "run-p lint:html lint:css lint:js lint:md",
"lint:css": "stylelint 'src/**/*.less' --fix",
"lint:html": "htmlhint 'src/**/*.html'",
"lint:js": "eslint --quiet --fix --format=pretty src",
"lint:md": "eslint --quiet --fix --format=pretty --ext .md .",
"prepare": "yarn run build",
"test": "yarn run lint",
"version": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"dependencies": {
"filesize": "^3.6.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@ovh-ux/component-rollup-config": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-markdown": "^1.0.1",
"htmlhint": "^0.11.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.3",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0"
},
"peerDependencies": {
"@ovh-ux/ng-translate-async-loader": "^2.0.0",
"angular": "^1.5.0",
"angular-translate": "^2.18.1",
"jquery": "^2.1.3"
},
"resolutions": {
"set-value": "^2.0.1"
}
}