UNPKG

1.58 kBJSONView Raw
1{
2 "name": "postcss-tape",
3 "version": "5.0.0",
4 "description": "Quickly test PostCSS plugins",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "license": "CC0-1.0",
7 "repository": "csstools/postcss-tape",
8 "homepage": "https://github.com/csstools/postcss-tape#readme",
9 "bugs": "https://github.com/csstools/postcss-tape/issues",
10 "main": "index.js",
11 "bin": {
12 "postcss-tape": "index.js"
13 },
14 "files": [
15 "index.js"
16 ],
17 "scripts": {
18 "build": "rollup --config --silent",
19 "prepublish": "npm test",
20 "pretest:tape": "npm run build",
21 "test": "npm run test:js && npm run test:tape",
22 "test:js": "eslint src/*.js src/lib/*.js --cache --ignore-pattern .gitignore",
23 "test:tape": "node . --plugin test/plugin.js --config test",
24 "test:tape:ci": "node . --ci true --plugin test/plugin.js --config test"
25 },
26 "engines": {
27 "node": ">=8.0.0"
28 },
29 "devDependencies": {
30 "@babel/core": "^7.4.4",
31 "@babel/plugin-syntax-dynamic-import": "^7.2.0",
32 "@babel/preset-env": "^7.4.4",
33 "babel-eslint": "^10.0.1",
34 "eslint": "^5.16.0",
35 "eslint-config-dev": "2.0.0",
36 "postcss": "^7.0.16",
37 "rollup": "^1.12.1",
38 "rollup-plugin-babel": "^4.3.2",
39 "rollup-plugin-terser": "^4.0.4"
40 },
41 "eslintConfig": {
42 "extends": "dev",
43 "parser": "babel-eslint",
44 "rules": {
45 "complexity": [
46 1,
47 24
48 ],
49 "max-params": [
50 1,
51 4
52 ]
53 }
54 },
55 "keywords": [
56 "postcss",
57 "css",
58 "postcss-plugin",
59 "testing",
60 "tests",
61 "tools",
62 "tape"
63 ]
64}