-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "w3c-css-validator",
"version": "1.3.2",
"description": "Easily validate CSS using W3C's public CSS validator service",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"browser": {
"https": false,
"util": false
},
"scripts": {
"dev": "yarn install --frozen-lockfile && yarn compile && yarn --cwd ./website install --frozen-lockfile",
"test": "jest && rugged",
"lint": "eslint --ext .js,.ts,.jsx,.tsx ./ && prettier --check '**/*.{ts,js,tsx,jsx,json,css,html,yml}'",
"format": "eslint --fix --ext .js,.ts,.jsx,.tsx ./ && prettier --write '**/*.{ts,js,tsx,jsx,json,css,html,yml}'",
"clean": "git clean -X -d --force && find . -type d -empty -delete",
"precompile": "rm -rf dist/",
"compile": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparksuite/w3c-css-validator.git"
},
"keywords": [
"css",
"validator",
"validation",
"w3c"
],
"author": "Sparksuite",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparksuite/w3c-css-validator/issues"
},
"homepage": "https://sparksuite.github.io/w3c-css-validator/",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^2.7.1",
"rugged": "^1.0.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"whatwg-fetch": "^3.6.2"
},
"resolutions": {
"ts-node": "^10.9.1"
}
}