-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "kaba-scss",
"description": "A small and fast SCSS builder for kaba.",
"license": "BSD-3-Clause",
"homepage": "https://github.com/Becklyn/kaba-scss",
"repository": {
"type": "git",
"url": "https://github.com/Becklyn/kaba-scss.git"
},
"version": "3.4.0",
"main": "src/index.js",
"scripts": {
"build": "node_modules/.bin/tsc --noEmitOnError --noErrorTruncation --listEmittedFiles --pretty --noUnusedLocals",
"dev": "node_modules/.bin/tsc --noEmitOnError --noErrorTruncation --listEmittedFiles --pretty -w",
"prepublishOnly": "npm run-script build",
"test": "ava"
},
"dependencies": {
"autoprefixer": "^9.8.0",
"chokidar": "^3.4.0",
"csso": "^4.0.3",
"fs-extra": "^9.0.1",
"kleur": "^3.0.1",
"postcss": "^7.0.32",
"postcss-css-variables": "^0.17.0",
"postcss-reporter": "^6.0.1",
"pretty-hrtime": "^1.0.3",
"sass": "^1.43.4",
"stylelint": "^13.6.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.0.13",
"@types/node-sass": "^4.11.2",
"@types/sass": "^1.16.0",
"@types/stylelint": "^9.10.1",
"ava": "^3.9.0",
"esm": "^3.2.25",
"glob": "^7.1.6",
"typescript": "^3.9.5"
},
"engines": {
"node": ">= 12.0"
},
"ava": {
"require": [
"esm"
]
}
}