-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "eslint-takeoff",
"version": "0.0.4",
"description": "ESLint todo list generator",
"main": "build/index.js",
"scripts": {
"build": "tsc -d --outDir build",
"lint": "eslint .",
"prettify": "prettier --write '**/*.@(ts|js)'",
"test": "jest",
"test:command": "cd test && ../bin/eslint-takeoff.js"
},
"bin": {
"eslint-takeoff": "./bin/eslint-takeoff.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richseviora/eslint-takeoff.git"
},
"keywords": [
"ESLint",
"linting"
],
"author": "Rich Seviora",
"license": "MIT",
"bugs": {
"url": "https://github.com/richseviora/eslint-takeoff/issues"
},
"homepage": "https://github.com/richseviora/eslint-takeoff#readme",
"peerDependencies": {
"eslint": "^4.0"
},
"dependencies": {
"caporal": "^0.10.0",
"js-yaml": "^3.10.0",
"lodash": "^4.3.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/lodash": "^4.14.92",
"@types/node": "^9.3.0",
"@types/yamljs": "^0.2.30",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"prettier": "^1.10.2",
"prettier-eslint": "^8.7.4",
"typescript": "^2.6.2"
}
}