-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "parcel-plugin-stylelint-all",
"version": "0.2.0",
"description": "Stylelint support for Parcel bundler",
"repository": "https://github.com/jppferguson/parcel-plugin-stylelint-all.git",
"homepage": "https://github.com/jppferguson/parcel-plugin-stylelint-all",
"bugs": "https://github.com/jppferguson/parcel-plugin-stylelint-all/issues",
"main": "index.js",
"scripts": {
"clean": "rm -rf .cache && rm -rf dist",
"debug": "npm run clean && DEBUG=\"parcel-plugin-stylelint-all:*\" nodemon test/index.js",
"lint": "eslint .",
"lint:styles": "stylelint examples/main.scss",
"test": "npm run lint"
},
"author": {
"name": "Jamie Ferguson",
"email": "[email protected]",
"url": "https://jppferguson.com"
},
"keywords": [
"parcel-plugin",
"parcel-bundler",
"stylelint"
],
"license": "ISC",
"dependencies": {
"debug": "^4.1.1",
"jsonfile": "^6.0.1",
"less": "^3.11.1",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.3",
"stylelint": "^13.3.2",
"stylelint-config-standard": "^20.0.0",
"stylus": "^0.54.7"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.4"
}
}