-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "stylelint-linter-action",
"version": "1.0.0",
"description": "Stylelint Linter Action",
"main": "index.js",
"scripts": {
"pack": "ncc build index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"preinstall": "git config core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betrybe/stylelint-linter-action.git"
},
"keywords": [],
"author": "Trybe",
"license": "ISC",
"bugs": {
"url": "https://github.com/betrybe/stylelint-linter-action/issues"
},
"homepage": "https://github.com/betrybe/stylelint-linter-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"jest": "^26.4.0"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/fixtures"
]
}
}