-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.58 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "sass-extended-importer",
"version": "1.0.1",
"description": "A Custom Sass Import Resolver with included support for Node Module Resolution, additional file extensions, and path aliases/path mapping",
"scripts": {
"generate:sandhog": "sandhog all --yes",
"generate:changelog": "standard-changelog --first-release",
"generate:all": "pnpm run generate:sandhog && pnpm run generate:changelog",
"clean": "rimraf dist",
"lint": "tsc --noEmit && eslint \"{src,test}/**/*.ts\" --color",
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
"test": "cross-env NODE_NO_WARNINGS=1 FORCE_COLOR=3 NODE_OPTIONS=\"--loader=tsx --max_old_space_size=6144\" ava",
"prebuild": "pnpm run clean",
"build": "pnpm run prebuild && pnpm run rollup",
"prewatch": "pnpm run clean",
"watch": "pnpm run prewatch && pnpm run rollup -- --watch",
"rollup": "rollup -c rollup.config.js",
"preversion": "npm run lint && pnpm run build",
"version": "pnpm run preversion && pnpm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn --no-tests",
"update:check": "pnpx npm-check-updates --dep dev,prod",
"update:commit": "pnpx npm-check-updates -u --dep dev,prod && pnpm update && pnpm install"
},
"keywords": [
"sass",
"scss",
"css",
"import",
"resolve",
"algorithm",
"~",
"node module resolution",
"importer",
"path mapping",
"alias",
"path aliasing"
],
"files": [
"dist/**/*.*"
],
"contributors": [
{
"name": "Frederik Wessberg",
"email": "frederikwessberg@hotmail.com",
"url": "https://github.com/wessberg",
"imageUrl": "https://avatars2.githubusercontent.com/u/20454213?s=460&v=4",
"github": "wessberg",
"role": "Lead Developer",
"twitter": "FredWessberg"
}
],
"license": "MIT",
"devDependencies": {
"@prettier/sync": "0.3.0",
"@types/resolve": "^1.20.2",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@wessberg/prettier-config": "^1.0.0",
"@wessberg/ts-config": "^4.0.0",
"ava": "^5.3.1",
"cross-env": "^7.0.3",
"crosspath": "^2.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"memfs": "^4.2.1",
"node-sass": "^9.0.0",
"np": "^8.0.4",
"npm-check-updates": "^16.10.18",
"pnpm": "^8.6.12",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.27.2",
"rollup-plugin-ts": "^3.4.4",
"sandhog": "^2.0.2",
"sass": "^1.64.2",
"semver": "^7.5.4",
"standard-changelog": "^3.0.0",
"tslib": "^2.6.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/node": "^20.4.9",
"crosspath": "^2.0.0",
"minimatch": "^9.0.3",
"resolve": "^1.22.4"
},
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"type": "module",
"types": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"funding": {
"type": "github",
"url": "https://github.com/wessberg/sass-extended-importer?sponsor=1"
},
"repository": {
"type": "git",
"url": "https://github.com/wessberg/sass-extended-importer.git"
},
"bugs": {
"url": "https://github.com/wessberg/sass-extended-importer/issues"
},
"engines": {
"node": ">=14.19.0"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"prettier": "@wessberg/prettier-config",
"ava": {
"files": [
"test/**/*.test.ts"
],
"concurrency": 1,
"verbose": true,
"timeout": "400s",
"extensions": {
"ts": "module"
}
}
}