-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.45 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.45 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "babel-plugin-postcss",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Replace import from css by content transformed by postcss",
"main": "index.js",
"typings": "index.d.ts",
"author": "2020",
"keywords": [
"babel-plugin"
],
"engines": {
"node": ">=8"
},
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "mocha -r ts-node/register/transpile-only src/**/*.spec.ts",
"test:w": "mocha -r ts-node/register/transpile-only --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"test:d": "node --inspect -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint": "node node_modules/eslint/bin/eslint src --ext ts",
"eslint:fix": "npm run eslint -- --fix",
"lint:w": "run-p tsclint:w eslint:w",
"lint:fix": "npm run eslint:fix",
"commit": "node node_modules/cz-customizable/standalone.js",
"cmlint": "sh Taskfile commit_lint",
"semantic-release": "semantic-release",
"build": "sh Taskfile build"
},
"dependencies": {
"postcss-load-config": "^2.1.0",
"sync-rpc": "^1.3.6"
},
"peerDependencies": {
"@babel/core": "^7.11.6",
"@babel/types": "^7.11.5"
},
"husky": {
"hooks": {
"pre-commit": "precise-commits",
"pre-push": "npm run test",
"commit-msg": "sh Taskfile commit_msg"
}
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/types": "^7.11.5",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"c8": "^7.3.0",
"common-tags": "^1.8.0",
"cz-customizable": "^6.3.0",
"earljs": "^0.0.13",
"eslint": "^7.8.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^21.0.0",
"eslint-plugin-wix-editor": "^3.2.0",
"git-branch-is": "^4.0.0",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.32",
"postcss-center": "^1.1.0",
"precise-commits": "^1.0.2",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"simplytyped": "^3.3.0",
"ts-node": "^9.0.0",
"typescript": "~4.0.2",
"watchexec-bin": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/babel-plugin-postcss.git"
},
"bugs": {
"url": "https://github.com/unlight/babel-plugin-postcss/issues"
},
"homepage": "https://github.com/unlight/babel-plugin-postcss#readme"
}