This repository has been archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.08 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
{
"name": "postcss-tape",
"description": "Quickly test PostCSS plugins",
"version": "6.0.1",
"type": "commonjs",
"main": "./dist/index.js",
"bin": {
"postcss-tape": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/csstools/postcss-tape.git"
},
"author": "Jonathan Neal <[email protected]>",
"homepage": "https://github.com/csstools/postcss-tape#readme",
"bugs": "https://github.com/csstools/postcss-tape/issues",
"license": "CC0-1.0",
"scripts": {
"build": "rollup --config --silent",
"prepublish": "npm test",
"pretest:tape": "npm run build",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint src/{*,**/*}.js --cache --ignore-pattern .gitignore",
"test:tape:7": "node . --plugin test/postcss7-plugin.js --config test",
"test:tape:8": "node . --plugin test/postcss8-plugin.js --config test",
"test:tape": "npm run test:tape:7 && npm run test:tape:8",
"test:tape:ci": "npm run test:tape:7 -- --ci true && npm run test:tape:8 -- --ci true"
},
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^7 || ^8"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"eslint": "^7.9.0",
"magic-string": "^0.25.7",
"postcss": "^8.0.5",
"rollup": "^2.27.1",
"rollup-plugin-babel": "^4.4.0"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"impliedStrict": true,
"sourceType": "module"
},
"root": true,
"rules": {
"semi": [
"error",
"never"
]
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"printWidth": 360,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"useTabs": true
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"testing",
"tests",
"tools",
"tape"
]
}