-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "stylelint_d",
"version": "3.2.0",
"description": "Long running Stylelint daemon",
"bin": "dist/bin/stylelint_d.js",
"dependencies": {
"glob": "^11.0.0",
"lodash.camelcase": "^4.3.0",
"minimist": "^1.2.0",
"node-pty": "^1.0.0",
"resolve": "^1.19.0",
"stylelint": "^15.10.1"
},
"devDependencies": {
"@actions/core": "^1.3.0",
"@actions/github": "^6.0.0",
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"@tsconfig/node12": "^12.1.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.5.11",
"@types/lodash.camelcase": "^4.3.6",
"@types/node": "^22.0.0",
"@types/resolve": "^1.17.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.1.0",
"eslint_d": "^14.0.1",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"stylelint-config-recommended": "^13.0.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jo-sm/stylelint_d.git"
},
"author": "Joshua Smock",
"license": "MIT",
"bugs": {
"url": "https://github.com/jo-sm/stylelint_d/issues"
},
"homepage": "https://github.com/jo-sm/stylelint_d#readme",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint:eslint": "eslint 'src/**/*.ts' 'bin/**/*.ts'",
"lint:prettier": "prettier -c 'src/**/*' 'bin/**/*'",
"lint:types": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
}
}