-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.4 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
{
"name": "postsass",
"version": "0.0.0",
"bin": {
"postsass": "bin/postsass.js"
},
"author": {
"name": "Tanuel",
"url": "https://github.com/Tanuel",
"email": "[email protected]"
},
"description": "Compile scss/sass files via sass and postcss from cli",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/Tanuel/postsass#readme",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "tsc --build --clean"
},
"keywords": [
"css",
"preprocessor",
"sass",
"scss",
"postcss",
"compiler",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/Tanuel/postsass.git"
},
"bugs": {
"url": "https://github.com/Tanuel/postsass/issues"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"bin/**/*.js",
"bin/**/*.d.ts",
"index.d.ts",
"index.js"
],
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.1",
"klaw": "^3.0.0",
"postcss": "^8.2.0",
"sass": "1.49.0",
"through2": "^4.0.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/klaw": "3.0.1",
"@types/sass": "1.16.0",
"@types/through2": "2.0.36",
"@types/yargs": "15.0.5",
"husky": "4.2.5",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}