forked from AleshaOleg/postcss-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.7 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "postcss-sass",
"version": "0.3.2",
"description": "A Sass parser for PostCSS, using gonzales-pe.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-sass",
"sass"
],
"author": "Oleh Aloshkin <[email protected]>",
"license": "MIT",
"repository": "AleshaOleg/postcss-sass",
"bugs": {
"url": "https://github.com/AleshaOleg/postcss-sass/issues"
},
"homepage": "https://github.com/AleshaOleg/postcss-sass",
"dependencies": {
"gonzales-pe": "4.2.3",
"postcss": "7.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.0",
"babel-plugin-add-module-exports": "^0.3.0",
"babel-plugin-precompile-charcodes": "^1.1.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-logux": "^23.0.0",
"eslint-config-postcss": "^3.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.1.0",
"greenkeeper-lockfile": "^1.15.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"jest": "^22.4.3",
"lint-staged": "^7.2.0",
"postcss-parser-tests": "^6.2.1"
},
"scripts": {
"precommit": "npm run test && lint-staged",
"prepack": "npm run build",
"clean": "rm *.js || echo 'Already cleaned'",
"build": "npm run clean && babel -s inline -d ./ *.es6",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublishOnly": "npm run build",
"pretest": "eslint *.es6 __tests__",
"test": "jest"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"settings": {
"node": {
"tryExtensions": [
".js",
".es6"
]
}
},
"rules": {
"max-len": [
"error",
120
]
}
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"es6",
"js",
"json"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/utils"
],
"testEnvironment": "node",
"transform": {
"^.+\\.es6$": "babel-jest"
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": "last 1 version",
"node": 6
},
"loose": true
}
]
],
"plugins": [
"precompile-charcodes"
]
},
"lint-staged": {
"*.es6": [
"eslint --fix",
"git add"
]
},
"main": "index.js"
}