-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.92 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
{
"name": "ts-ignore",
"version": "0.0.3",
"description": "ignore typescript errors",
"keywords": [
"git"
],
"homepage": "https://github.com/codejamninja/ts-ignore",
"bugs": {
"url": "https://github.com/codejamninja/ts-ignore/issues",
"email": "jam@codejam.ninja"
},
"license": "MIT",
"author": {
"name": "Jam Risser",
"email": "jam@codejam.ninja",
"url": "https://codejam.ninja"
},
"files": [
"bin.js",
"lib",
"oclif.manifest.json"
],
"main": "lib/index.js",
"bin": {
"ts-ignore": "bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codejamninja/ts-ignore"
},
"scripts": {
"babel": "babel-node --extensions \".ts,.tsx\"",
"build": "npm run test && babel src -d lib --extensions \".ts,.tsx\" --source-maps inline && tsc -d --emitDeclarationOnly && oclif-dev manifest",
"clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* && jest --clearCache",
"clean:purge": "jest --clearCache && git clean -fXd",
"format": "prettier --write ./**/*.{json,md,scss,yaml,yml,js,jsx,ts,tsx} --ignore-path .gitignore",
"lint": "npm run format && tsc --allowJs --noEmit && eslint --ext .ts,.tsx ./",
"lint:fix": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx --fix ./",
"prepublish": "npm run build",
"start": "babel-node --extensions \".ts,.tsx\" src/bin",
"test": "npm run lint && jest --coverage"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.3",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^2.2.1",
"@oclif/plugin-legacy": "^1.1.4",
"@types/split": "^1.0.0",
"bluebird": "^3.7.1",
"core-js": "^3.3.2",
"execa": "^3.1.0",
"fs-extra": "^8.1.0",
"ora": "^4.0.2",
"pkg-dir": "^4.2.0",
"ts-node": "^8.4.1",
"ts-optchain.macro": "^1.1.5"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@oclif/dev-cli": "^1.22.2",
"@types/bluebird": "^3.5.28",
"@types/core-js": "^2.5.2",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.144",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-preset-jam": "^0.4.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-typescript": "^5.0.0",
"eslint-config-jam": "^0.2.20",
"eslint-plugin-jest": "^22.19.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"tsc": "^1.20150623.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"lib"
],
"jest": {
"testRegex": "((tests(/|/.*/)[^_/]*)|\\.spec)\\.[jt]sx?$",
"verbose": true,
"setupFilesAfterEnv": [
"./tests/_setup.ts"
]
}
}