forked from ponsifiax/ts-import-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.3 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.3 KB
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
{
"name": "ts-import-plugin-override",
"version": "1.5.9",
"description": "babel-plugin-import-override TypeScript version",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc -p src/tsconfig.json",
"cover": "rm -rf ./coverage ./.nyc_output && nyc --reporter=html --reporter=lcov --exclude=node_modules --exclude=test mocha && nyc report",
"lint": "tslint -c ./tslint.json -p ./src/tsconfig.json",
"prepare": "npm run build",
"start": "rm -rf dist && NODE_ENV=production webpack",
"test": "mocha",
"watch": "tsc -p ./src/tsconfig.json -w --diagnostics"
},
"repository": {
"type": "git",
"url": "git@github.com:ponsifiax/ts-import-plugin-override.git"
},
"keywords": [
"antd",
"TypeScript",
"plugin"
],
"files": [
"index.d.ts",
"lib/"
],
"author": "ponsifiax@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.118",
"@types/material-ui": "^0.21.5",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"antd": "^3.10.8",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"css-loader": "^2.0.0",
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"lodash": "^4.17.11",
"material-ui": "^0.20.2",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rxjs": "^6.3.3",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"tslib": "^1.9.3"
},
"standard": {
"globals": [
"describe",
"it"
]
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always",
"parser": "typescript"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -c tslint.json -p tsconfig.json --fix -e \"**/test/expect/**\"",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}