forked from arpadHegedus/postcss-node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
{
"name": "postcss-node-sass",
"version": "3.1.0",
"description": "A PostCSS plugin to parse styles with node-sass",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/arpadHegedus/postcss-node-sass.git",
"homepage": "https://github.com/arpadHegedus/postcss-node-sass#readme",
"bugs": "https://github.com/arpadHegedus/postcss-node-sass/issues",
"keywords": [
"sass",
"postcss",
"postcss-plugin",
"node-sass",
"preprocessor",
"libsass",
"parse",
"plugin",
"scss",
"css",
"style"
],
"author": {
"name": "Arpad Hegedus",
"email": "hegedus.arpad@gmail.com",
"web": "http://arpadhegedus.com"
},
"contributors": [
{
"name": "Arpad Hegedus",
"email": "hegedus.arpad@gmail.com",
"web": "http://arpadhegedus.com"
},
{
"name": "Jonathan Neal",
"email": "jonathantneal@hotmail.com",
"web": "https://jonathantneal.github.io"
}
],
"maintainers": [
{
"name": "Arpad Hegedus",
"email": "hegedus.arpad@gmail.com",
"web": "http://arpadhegedus.com"
}
],
"scripts": {
"test": "jest"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
},
"jest": {
"testURL": "http://localhost"
},
"dependencies": {
"merge-source-map": "^1.1.0",
"node-sass": "^4.14.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-postcss": "^3.0.6",
"jest": "^23.6.0",
"postcss": "^8.2.7"
},
"peerDependencies": {
"postcss": "^8.x.x"
}
}