-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
98 lines (98 loc) · 2.5 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
{
"name": "rollup-plugin-sass",
"version": "1.14.0",
"description": "Rollup Sass files.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typesVersions": {
"<4.0": {
"*": [
"ts3.5/*"
]
}
},
"scripts": {
"prepare": "npm run build && npm test && husky",
"build": "npm run build-downlevel-dts && tsc --project tsconfig.build.json",
"build-downlevel-dts": "node scripts/clean-and-run-downlevel-dts.js",
"downlevel-dts": "downlevel-dts . ts3.5 [--to=3.5]",
"test": "nyc --reporter=html --reporter=text ava && npm run test:types",
"test:types": "tsc --project tsconfig.spec.json --noEmit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"output-coverage-lcov": "nyc report --reporter=text-lcov > coverage/tests.lcov",
"commitlint": "commitlint --edit",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"standard": {
"ignore": [
"dist/",
"test/fixtures/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/elycruz/rollup-plugin-sass.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"sass"
],
"author": "BinRui.Guan <[email protected]>",
"maintainers": [
"elycruz <elycruz-at-elycruz.com> (https://github.com/elycruz)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/elycruz/rollup-plugin-sass/issues"
},
"homepage": "https://github.com/elycruz/rollup-plugin-sass#readme",
"files": [
"dist"
],
"ava": {
"files": [
"./test/*.test.ts",
"!./test/rollup.config.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"snapshotDir": "./test/snapshots"
},
"dependencies": {
"@rollup/pluginutils": "^3 || ^4 || ^5",
"resolve": "^1.5.0",
"sass": "^1.7.2"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/icss-utils": "^5.1.2",
"@types/node": "^18.14.6",
"@types/resolve": "^0.0.8",
"@types/sinon": "^17.0.3",
"ava": "^6.1.3",
"coveralls-next": "^4.2.1",
"downlevel-dts": "^0.10.0",
"happy-dom": "^15.10.2",
"husky": "^9.0.11",
"icss-utils": "^5.1.0",
"nyc": "^17.0.0",
"postcss": "^8.4.16",
"postcss-modules": "^6.0.1",
"prettier": "^3.3.3",
"rollup": "^1 || ^2 || ^3",
"sinon": "^18.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=10"
}
}