-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.67 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
{
"name": "flegrix",
"version": "0.2.1",
"description": "tiny grid system for flexbox",
"main": "./src/index.js",
"scripts": {
"build": "rm -rf ./public && mkdir ./public && node ./build/index.js && cp ./doc/* ./public",
"test": "jest --coverage && eslint-ci *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/signalwerk/flegrix.git"
},
"keywords": [
"flexbox",
"grid"
],
"author": "Stefan Huber",
"license": "MIT",
"dependencies": {
"postcss": "^7.0.21"
},
"devDependencies": {
"@logux/eslint-config": "^34.0.0",
"clean-publish": "^1.1.2",
"eslint": "^6.6.0",
"eslint-ci": "^1.0.0",
"eslint-config-postcss": "^3.0.7",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^12.1.0",
"jest": "^24.9.0"
},
"bugs": {
"url": "https://github.com/signalwerk/flegrix/issues"
},
"homepage": "https://github.com/signalwerk/flegrix#readme",
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
},
"testEnvironment": "node"
},
"files": [
"/src/*"
],
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"rules": {
"func-style": "off"
},
"overrides": [
{
"files": [
"*.test.js"
],
"rules": {
"jest/expect-expect": "off"
}
}
]
}
}