-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 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
73
{
"name": "ink-splat",
"version": "0.0.6",
"description": "ink-splat is a component library for ink.",
"author": "David A. Ball <www.daball.me>",
"repository": {
"type": "git",
"url": "https://github.com/daball/ink-splat"
},
"license": "MIT",
"main": "dist/components/index.js",
"scripts": {
"pre-commit": "NODE_ENV=production lint-staged && gulp && esdoc && jest --coverage",
"lint": "eslint src/",
"check": "prettier --check src/**/*.js",
"test": "eslint src/ && gulp && jest --coverage",
"jest-init": "jest --init",
"build-doc": "esdoc",
"build": "gulp"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0-beta.2",
"gulp-prettier": "^2.1.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jshint": "^2.10.2",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"pretty-quick": "^1.10.0"
},
"dependencies": {
"babel-eslint": "^10.0.1",
"ink": "^2.0.6",
"ink-tab": "^2.0.1",
"ink-text-input": "^3.1.0",
"ink-testing-library": "^1.0.1",
"inquirer": "^6.2.2",
"react": "^16.8.5",
"react-dom": "^16.8.6",
"window": "^4.2.6"
}
}