Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
51 lines (51 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "@node-loader/postcss",
"version": "2.0.0",
"description": "A NodeJS loader for processing PostCSS ",
"type": "module",
"main": "lib/node-loader-postcss.js",
"scripts": {
"test": "node --loader ./lib/node-loader-postcss.js ./test/run-tests.js",
"lint": "eslint lib",
"check-format": "prettier --check .",
"prepare": "husky install"
},
"files": [
"lib"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-loader/node-loader-postcss.git"
},
"keywords": [
"node",
"loader",
"postcss"
],
"publishConfig": {
"access": "public"
},
"author": "Joel Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-loader/node-loader-postcss/issues"
},
"homepage": "https://github.com/node-loader/node-loader-postcss#readme",
"dependencies": {
"postcss": "^8.3.6"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.9",
"autoprefixer": "^10.3.1",
"eslint": "^7.32.0",
"eslint-config-node-important-stuff": "^1.1.0",
"husky": "^7.0.0",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
}
}