-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.69 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
62
63
64
65
66
67
68
{
"name": "subsetcss",
"version": "0.3.0",
"description": "Linting your CSS to limit yourself to a defined subset of values.",
"repository": "https://github.com/knownasilya/subsetcss",
"keywords": [
"css",
"linting",
"stylelint",
"stylelint-plugin",
"styleguide",
"styles"
],
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
"files": [
"build"
],
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"pretest": "yarn build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prerelease": "yarn build",
"release": "standard-version"
},
"peerDependencies": {
"stylelint": "^14.0.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@typescript-eslint/eslint-plugin": "~5.3.0",
"@typescript-eslint/parser": "~5.3.0",
"eslint": "~8.1.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.2.2",
"jest": "~27.3.1",
"prettier": "~2.4.1",
"rimraf": "~3.0.2",
"standard-version": "^9.3.2",
"stylelint": "^14.0.0",
"ts-jest": "~27.0.7",
"tsutils": "~3.21.0",
"typescript": "~4.4.4"
},
"dependencies": {
"@subsetcss/parser": "^0.1.3",
"@types/stylelint": "^13.13.3",
"postcss": "^8.4.4",
"postcss-value-parser": "^4.2.0"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
}
}