-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
104 lines (104 loc) · 3.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "stylelint-declaration-strict-value",
"version": "1.10.6",
"description": "Specify properties for which a variable, function, keyword or value must be used",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"build": "microbundle --tsconfig tsconfig.build.json --compress",
"release": "dotenv semantic-release",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"coverage": "jest --config='./jest.coverage.config.js'",
"postcoverage": "dotenv codecov",
"eslint": "eslint 'src/**/*.[tj]s' 'test/**/*.[tj]s'",
"docs": "typedoc --plugin typedoc-plugin-markdown",
"toc": "doctoc README.md --title '**Table of Contents**'",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndyOGo/stylelint-declaration-strict-value.git"
},
"keywords": [
"stylelint-plugin",
"stylelint",
"css",
"scss",
"less",
"lint",
"delaration-strict-value",
"variable",
"function",
"keyword",
"color",
"z-index"
],
"author": "Andreas Deuschlinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndyOGo/stylelint-declaration-strict-value/issues"
},
"homepage": "https://github.com/AndyOGo/stylelint-declaration-strict-value#readme",
"peerDependencies": {
"stylelint": ">=7 <=16"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.20.12",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.12.1",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-jest": "^29.4.2",
"babel-register-ts": "^7.0.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"css-values": "^0.1.0",
"doctoc": "^2.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.7",
"husky": "^6.0.0",
"jest": "^29.4.2",
"jest-preset-stylelint": "^7.0.0",
"lint-staged": "^10.5.2",
"microbundle": "^0.15.1",
"nyc": "^15.1.0",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"shortcss": "^0.1.3",
"stylelint": "^16.1.0",
"typedoc": "^0.22.7",
"typedoc-plugin-markdown": "^3.2.1",
"typescript": "^4.1.2"
}
}