-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "eslint-plugin-opinionated",
"version": "0.2.2",
"description": "Opinionated rules for styling your code.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "nodely -s ./src -o ./lib && npm run gen-types",
"gen-types": "flow-copy-source --ignore \"**/__tests__/**\" src lib",
"postpublish": "codecov",
"prepublishOnly": "npm run build",
"test": "lintly src && flow && jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dogma-io/eslint-plugin-opinionated.git"
},
"keywords": [
"code",
"component",
"eslint",
"inferno",
"javascript",
"js",
"plugin",
"preact",
"quality",
"react",
"rules"
],
"author": "Matthew Dahl <https://github.com/dogma-io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dogma-io/eslint-plugin-opinionated/issues"
},
"homepage": "https://github.com/dogma-io/eslint-plugin-opinionated#readme",
"devDependencies": {
"@babel/core": "7.8.3",
"babel-core": "^7.0.0-0",
"babel-jest": "24.9.0",
"babel-preset-nodely": "0.4.2",
"codecov": "3.6.1",
"flow-copy-source": "2.0.9",
"jest": "24.9.0",
"lintly": "0.4.0",
"nodely": "1.0.0"
}
}