-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.12 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
{
"name": "stylelint-tape",
"version": "5.0.1",
"description": "Test stylelint plugins",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "csstools/stylelint-tape",
"homepage": "/~https://github.com/csstools/stylelint-tape#readme",
"bugs": "/~https://github.com/csstools/stylelint-tape/issues",
"type": "module",
"main": "index.mjs",
"bin": {
"stylelint-tape": "cli.mjs"
},
"files": [
"cli.js",
"cli.js.map",
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map"
],
"scripts": {
"build": "npm run build:api && npm run build:cli",
"build:api": "cross-env NODE_ENV=api rollup --config --silent",
"build:cli": "cross-env NODE_ENV=cli rollup --config --silent",
"posttest:cli": "npm unlink stylelint-tape",
"prepublishOnly": "npm run test:js && npm run test:node && npm run build:cli",
"pretest:cli": "npm run build:cli && npm link",
"pretest:node": "npm run build:api",
"test": "npm run test:js && npm run test:node && npm run test:cli",
"test:js": "eslint lib/*.mjs --cache --ignore-path .gitignore --quiet",
"test:node": "node test/test.mjs",
"test:cli": "stylelint-tape --cwd ./test/"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"log-update": "^4"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.18.2",
"babel-eslint": "^10.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-dev": "^3.1.0",
"pre-commit": "^1.2.2",
"rollup": "^2.75.7",
"rollup-plugin-babel": "^4.3.2",
"stylelint": "^16"
},
"peerDependencies": {
"stylelint": ">= 16"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint-config-dev"
],
"ignorePatterns": "dist",
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2018,
"impliedStrict": true,
"sourceType": "module"
}
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"test",
"tool"
]
}