-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "broccoli-stylelint",
"version": "4.0.0",
"description": "Broccoli stylelint plugin",
"keywords": [
"broccoli",
"broccoli-plugin",
"stylelint"
],
"engines" : {
"node" : ">=10.x"
},
"main": "index.js",
"scripts": {
"lint": "jest --projects jest-eslint.config.js",
"test": "jest",
"test:watch": "jest --watchAll --notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billybonks/broccoli-stylelint.git"
},
"author": {
"name": "billybonks",
"email": "[email protected]",
"website": "www.unearthing.io"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/billybonks/broccoli-stylelint/issues"
},
"homepage": "https://github.com/billybonks/broccoli-stylelint#readme",
"devDependencies": {
"broccoli": "^0.16.9",
"co": "^4.6.0",
"eslint": "^6.8.0",
"jest": "^25.2.3",
"jest-runner-eslint": "^0.7.1",
"stylelint-selector-bem-pattern": "^2.0.0",
"walk-sync": "^2.0.2",
"merge": "^1.2.1"
},
"dependencies": {
"aot-test-generators": "^0.1.0",
"broccoli-concat": "^3.2.2",
"broccoli-node-info": "~2.1.0",
"broccoli-persistent-filter": "^2.1.1",
"chalk": "~3.0.0",
"ignore": "^5.0.2",
"js-string-escape": "~1.0.1",
"lodash.defaultsdeep": "^4.6.0",
"stylelint": "^13.2.1"
},
"jest": {
"projects": [
"<rootDir>/jest-test.config.js",
"<rootDir>/jest-eslint.config.js"
]
}
}