-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 3.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@amilajack/joker",
"version": "0.0.4",
"description": "Simple and powerful testing for command-line apps",
"keywords": [
"cli",
"command line",
"e2e",
"end to end",
"test"
],
"files": [
"dist"
],
"main": "./dist",
"homepage": "https://github.com/amilajack/joker",
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir dist --extensions \".ts\" --source-maps inline",
"docs": "rm -rf docs && typedoc ./src --out docs",
"lint": "eslint --ext .ts --ext .js .",
"spec": "jest --runInBand",
"test": "yarn ts && yarn lint && yarn build && yarn spec",
"ts": "tsc",
"prepublish": "yarn test && yarn ts:dec",
"ts:dec": "yarn ts --declaration"
},
"repository": {
"type": "git",
"url": "git://github.com/amilajack/joker.git"
},
"author": "Amila Welihinda <amilajack@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@types/assertion-error": "^1.1.0",
"@types/clone": "^0.1.30",
"@types/expect": "^1.20.4",
"@types/jest": "^24.9.1",
"@types/node": "^11.15.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-jest": "^24.9.0",
"codecov": "^3.6.5",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-bliss": "^3.4.0",
"eslint-import-resolver-typescript": "^1.1.1",
"flow": "^0.2.3",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.2.1",
"prompt": "^1.0.0",
"rimraf": "^2.7.1",
"typedoc": "^0.16.11",
"typescript": "^3.7.5"
},
"dependencies": {
"assertion-error": "^1.1.0",
"clone": "^2.1.2",
"expect": "^24.9.0",
"shell-quote": "^1.7.2"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"no-useless-constructor": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"endOfLine": "auto"
}
]
},
"settings": {
"import/resolver": {
"typescript": {}
}
},
"parserOptions": {
"sourceType": "module"
},
"env": {
"es6": true,
"node": true
}
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test"
}
},
"renovate": {
"extends": [
"bliss"
]
},
"types": "./dist/index.d.ts",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 10
}
}
],
[
"@babel/preset-typescript",
{
"allExtensions": true
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"lint-staged": {
"linters": {
"*.{ts,js}": [
"eslint",
"git add"
]
}
}
}