-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.42 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
{
"name": "postcss-design-tokens",
"version": "1.3.0",
"description": "PostCSS plugin that provides a function to retrieve design tokens expressed in JS or JSON, within CSS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-design-tokens",
"design",
"token",
"tokens"
],
"scripts": {
"test": "jest --coverage && prettier --check . && eslint .",
"format": "prettier --write ."
},
"author": "jptaranto <[email protected]>",
"license": "MIT",
"repository": "https://github.com/jptaranto/postcss-design-tokens",
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"jest": "^27.5.1",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"prettier"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 90
}
}
},
"dependencies": {
"postcss-value-parser": "^4.2.0"
}
}