This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "ovh-api-services",
"version": "17.0.0",
"description": "Contains all AngularJS $resource for OVHcloud API.",
"keywords": [
"angularjs",
"api",
"ovh",
"ovhcloud",
"resource"
],
"repository": "ovh-ux/ovh-api-services",
"license": "BSD-3-Clause",
"author": "OVH SAS",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/umd/ovh-api-services.js",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -cw --environment BUILD:development",
"lint": "run-p lint:js lint:md",
"lint:js": "eslint --quiet --fix --format=pretty src",
"lint:md": "eslint --quiet --fix --format=pretty --ext .md .",
"prepare": "husky install && 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": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@ovh-ux/component-rollup-config": "^12.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-angular": "^4.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^1.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"rollup-plugin-glob-import": "^0.4.5"
},
"peerDependencies": {
"@ovh-ux/ng-ovh-api-wrappers": "^4.0.2",
"@ovh-ux/ng-ovh-swimming-poll": "^4.0.0",
"angular": "^1.7.8",
"angular-resource": "^1.7.8"
},
"resolutions": {
"minimist": "^1.2.3",
"kind-of": "^6.0.3"
}
}