-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "broccoli-postcss",
"version": "6.1.0",
"description": "Postcss compiler for Broccoli",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jeffjewiss/broccoli-postcss"
},
"scripts": {
"test": "nyc mocha",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test"
},
"engines": {
"node": ">= 10"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"files": [
"index.js"
],
"keywords": [
"broccoli-plugin",
"css",
"postcss",
"postcss-runner"
],
"author": "Jeff Jewiss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffjewiss/broccoli-postcss/issues"
},
"homepage": "https://github.com/jeffjewiss/broccoli-postcss",
"dependencies": {
"broccoli-funnel": "^3.0.0",
"broccoli-persistent-filter": "^3.1.1",
"minimist": ">=1.2.5",
"object-assign": "^4.1.1",
"postcss": "^8.1.4"
},
"resolutions": {
"minimist": "1.2.6"
},
"devDependencies": {
"async": "^3.0.0",
"broccoli": "^3.0.0",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"glob": "^8.0.3",
"husky": "4.3.8",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"postcss-color-rebeccapurple": "^7.0.0",
"rimraf": "^3.0.0"
}
}