-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "postcss-replace",
"version": "2.0.1",
"author": "Gridonic <[email protected]>",
"license": "MIT",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"replace",
"strings"
],
"main": "index.js",
"homepage": "https://github.com/gridonic/postcss-replace#readme",
"description": "PostCSS plugin for replacing strings.",
"bugs": {
"url": "https://github.com/gridonic/postcss-replace/issues"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"scripts": {
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "jest --coverage",
"test": "npm run test:unit && npm run test:mutate",
"test:unit": "jest",
"test:mutate": "stryker run"
},
"dependencies": {
"kind-of": "^6.0.3",
"object-path": "^0.11.8"
},
"peerDependencies": {
"postcss": "^8.4"
},
"devDependencies": {
"@stryker-mutator/core": "^6.4.1",
"@stryker-mutator/jest-runner": "^6.4.1",
"coveralls": "^3.1.1",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"postcss": "^8.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gridonic/postcss-replace.git"
}
}