This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "@ovh-ux/rollup-plugin-less-tilde-importer",
"version": "1.0.5",
"description": "A rollup plugin providing ~ (tilde) prefix as a way to tell less compiler that it should resolve path using a configured array of module directories",
"keywords": [
"importer",
"less",
"plugin",
"rollup",
"tilde",
"tilde-importer"
],
"homepage": "https://github.com/ovh/rollup-plugin-less-tilde-importer#readme",
"bugs": {
"url": "https://github.com/ovh/rollup-plugin-less-tilde-importer/issues"
},
"repository": "ovh/rollup-plugin-less-tilde-importer",
"license": "BSD-3-Clause",
"author": "OVH SAS",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "run-p format:js format:md",
"format:js": "yarn run lint:js --fix",
"format:md": "yarn run lint:md --fix",
"lint": "run-p lint:js lint:md",
"lint:js": "eslint --quiet index.js",
"lint:md": "eslint --quiet --format=pretty --ext .md .",
"test": "eslint --quiet .",
"version": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"resolutions": {
"dot-prop": "4.2.1",
"minimist": "^1.2.2"
},
"dependencies": {
"magic-string": "^0.25.7",
"rollup-pluginutils": "^2.8.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-angular": "^9.1.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-markdown": "^1.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5"
},
"peerDependencies": {
"rollup": ">=1.15.0"
}
}