-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "postcss-relaxed-unit",
"version": "1.1.1",
"main": "dist/src/main.js",
"description": "PostCSS plugin Make write csss easier with custom unit",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"unit"
],
"files": [
"dist"
],
"scripts": {
"test": "jest && eslint *.js",
"dev": "tsc --watch",
"example": "cd ./example && node ./main.js"
},
"author": "HaoDaWang <[email protected]>",
"license": "MIT",
"repository": "youncccat/postcss-relaxed-unit",
"bugs": {
"url": "https://github.com/youncccat/postcss-relaxed-unit/issues"
},
"homepage": "https://github.com/youncccat/postcss-relaxed-unit",
"dependencies": {
"bignumber.js": "^9.0.0",
"postcss": "^7.0.6"
},
"devDependencies": {
"@logux/eslint-config": "^27.0.0",
"@types/jest": "^24.0.18",
"eslint": "^5.10.0",
"eslint-config-postcss": "^3.0.7",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-es5": "^1.3.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
},
"jest": {
"testEnvironment": "node"
}
}