-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "postcss-plugins",
"version": "1.15.10",
"description": "A consolidated list of PostCSS plugins in an ready-to-use format.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/himynameisdave/postcss-plugins.git"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"add": "node scripts/add-new-plugin.js && node scripts/update-authors.js",
"add-new-plugin": "node scripts/add-new-plugin.js",
"update-authors": "node scripts/update-authors.js",
"update-stars": "node scripts/update-stars.js && node scripts/update-authors.js",
"lint": "eslint ./scripts/ ./test/ --quiet",
"lint:fix": "eslint ./scripts/ ./test/ --fix",
"test:unit": "mocha test",
"test": "npm run lint && npm run test",
"release": "np --no-yarn"
},
"husky": {
"hooks": {
"pre-commit": "node scripts/update-authors.js && npm run lint && npm run test:unit"
}
},
"dependencies": {
"chalk": "^2.1.0",
"inquirer": "^3.3.0",
"octonode": "^0.9.3"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"chai-json-schema": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-himynameisdave": "^1.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^16.1.1",
"fs-extra": "^7.0.1",
"husky": "^3.0.9",
"mocha": "^4.0.1",
"np": "^6.2.0"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"list",
"library",
"plugins"
],
"homepage": "https://github.com/himynameisdave/postcss-plugins#readme",
"bugs": {
"url": "https://github.com/himynameisdave/postcss-plugins/issues"
},
"author": "himynameisdave",
"license": "MIT"
}