-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.09 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
{
"name": "sass-build",
"description": "",
"version": "1.1.6",
"author": "Ivan Zhekov <[email protected]>",
"license": "MIT",
"keywords": [
"sass",
"compiler"
],
"main": "dist/index.js",
"bin": "bin/sass-build.js",
"types": "types/index.d.ts",
"files": [
"bin/",
"dist/",
"lib/",
"types/"
],
"repository": {
"type": "git",
"url": "https://github.com/joneff/sass-build.git"
},
"bugs": {
"url": "https://github.com/joneff/sass-build/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node scripts/build.js",
"watch": "npm run build -- --watch",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"test": "ts-mocha",
"check-types": "npx tsc --project tsconfig.json",
"update": "npx npm-check-updates --upgrade",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@joneff/baka": "^2.1.0",
"glob": "^7.0.0 || ^8.0.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"npmlog": "^7.0.1"
},
"peerDependencies": {
"autoprefixer": "^10.0.0",
"node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"postcss": "^8.0.0",
"postcss-calc": "^8.0.0 || ^9.0.0",
"sass": "^1.62.0",
"sass-embedded": "^1.62.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/core": "^17.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.190",
"@types/mime-types": "^2.1.1",
"@types/npmlog": "^4.1.4",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"autoprefixer": "^10.4.14",
"esbuild": "^0.15.16",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"mocha": "^10.2.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.24",
"postcss-calc": "^9.0.1",
"sass": "^1.63.4",
"sass-embedded": "^1.62.0",
"semantic-release": "^19.0.5",
"ts-mocha": "^10.0.0",
"typescript": "^4.7.4"
}
}