-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.31 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
{
"name": "postcss-utopia",
"version": "1.1.0",
"description": "PostCSS plugin to generate fluid typopgraphy and space scales",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-utopia",
"utopia"
],
"scripts": {
"prepublishOnly": "npm run test",
"test": "jest --coverage && eslint .",
"test-css": "postcss -o dist/main.css test/index.css"
},
"main": "index.js",
"types": "index.d.ts",
"author": "Trys Mudford <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/trys/postcss-utopia.git"
},
"peerDependencies": {
"postcss": "^8.4.33"
},
"dependencies": {
"postcss-value-parser": "^4.2.0",
"utopia-core": "^1.3.0"
},
"devDependencies": {
"clean-publish": "^3.4.2",
"eslint": "^8.0.1",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 95
}
}
}
}