forked from dbtedman/postcss-prefixwrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@worktile/planet-postcss-prefixwrap",
"version": "1.19.13",
"description": "A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.",
"license": "MIT",
"author": {
"name": "Daniel Tedman",
"url": "https://danieltedman.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worktile/postcss-prefixwrap.git"
},
"homepage": "https://github.com/worktile/postcss-prefixwrap#readme",
"bugs": "https://github.com/dbtedman/postcss-prefixwrap/issues",
"keywords": [
"css",
"javascript",
"nodejs",
"yarn",
"postcss",
"postcss-plugin",
"typescript"
],
"main": "./build/index.js",
"files": [
"*.md",
"build"
],
"engines": {
"npm": "Please use yarn instead of npm to install dependencies",
"yarn": ">= 1.0.0"
},
"scripts": {
"build": "npm run clean && npm run build-only",
"build-only": "tsc --build ./tsconfig.json && rm -rf ./build/{**/*,*}.spec.js && rm -rf ./build/acceptance && rm -rf ./build/integration",
"clean": "rm -rf ./build/",
"copy": "cpx src/package.json build",
"format": "prettier './**/*.{md,yml,yaml,json,ts,js}' --write && yarn eslint --fix . --ext .js,.ts",
"lint": "prettier './**/*.{md,yml,yaml,json,ts,js}' --check && yarn eslint . --ext .js,.ts",
"test": "jest --coverage",
"pub-only": "npm publish --access=public",
"pub": "npm run build && npm run pub-only"
},
"peerDependencies": {
"postcss": "*"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@types/jest": "26.0.13",
"@types/node": "14.6.4",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"codecov": "3.7.2",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security-node": "1.0.12",
"husky": "4.2.5",
"jest": "26.4.2",
"postcss": "8.1.0",
"postcss7": "npm:[email protected]",
"prettier": "2.1.1",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"typescript": "4.0.2",
"cpx": "^1.5.0"
}
}