-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.52 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
{
"name": "@metahub/karma-postcss-preprocessor",
"description": "Karma preprocessor to compile css files with postcss with sourcemap and watch support",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"ava": {
"files": [
"test/*.test.js"
]
},
"bugs": {
"url": "https://github.com/pvdlg/karma-postcss-preprocessor/issues"
},
"dependencies": {
"chokidar": "^3.2.2",
"lodash": "^4.17.4",
"minimatch": "^3.0.4",
"nodeify": "^1.0.1",
"source-map-url": "^0.4.0"
},
"devDependencies": {
"@metahub/karma-jasmine-jquery": "^4.0.1",
"ava": "^3.1.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"codecov": "^3.0.0",
"conventional-changelog-metahub": "^4.0.0",
"cssnano": "^4.0.0",
"fs-extra": "^9.0.0",
"jasmine-core": "^3.0.0",
"jasmine-jquery": "^2.1.1",
"karma": "^4.4.1",
"karma-babel-preprocessor": "^8.0.0",
"karma-jasmine": "^3.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"nyc": "^15.0.0",
"p-event": "^4.1.0",
"pify": "^5.0.0",
"postcss": "^7.0.0",
"postcss-import": "^12.0.0",
"postcss-mixins": "^6.0.1",
"postcss-scss": "^2.0.0",
"postcss-simple-vars": "^5.0.0",
"proxyquire": "^2.0.0",
"semantic-release": "^17.0.0",
"sinon": "^9.0.0",
"tempy": "^0.5.0",
"xo": "^0.27.0"
},
"engines": {
"node": ">=10.18"
},
"files": [
"index.js"
],
"homepage": "https://github.com/pvdlg/karma-postcss-preprocessor#readme",
"keywords": [
"karma-plugin",
"karma-preprocessor",
"postcss",
"sourcemaps",
"watcher"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"karma": "*",
"postcss": "*"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"release": {
"analyzeCommits": {
"preset": "metahub",
"releaseRules": "conventional-changelog-metahub/release-rules"
},
"generateNotes": {
"preset": "metahub"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pvdlg/karma-postcss-preprocessor.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true
}
}