-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.54 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
{
"name": "typescript-refactoring-plugin",
"version": "0.0.1",
"description": "A typescript refactoring language service plugin",
"main": "lib/src/index.js",
"scripts": {
"build": "run-s compile check coverage",
"compile": "tsc -p .",
"coverage": "nyc npm test",
"check": "tslint -p .",
"fix": "run-s \"check -- --fix\"",
"test": "ava",
"watch:compile": "run-s \"compile -- --watch\"",
"watch:test": "run-s \"test -- --watch\"",
"watch": "run-p watch:**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greyepoxy/typescript-refactoring-plugin.git"
},
"keywords": [
"typescript"
],
"author": "greyepoxy",
"license": "MIT",
"bugs": {
"url": "https://github.com/greyepoxy/typescript-refactoring-plugin/issues"
},
"homepage": "https://github.com/greyepoxy/typescript-refactoring-plugin#readme",
"dependencies": {
"tsutils": "^3.3.0"
},
"devDependencies": {
"@types/node": "^10.12.2",
"ava": "^0.25.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.1.0",
"prettier": "^1.14.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6"
},
"files": [
"lib/src"
],
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"ava": {
"files": [
"lib/**/*tests.js"
],
"source": [
"lib/**/*.js",
"!lib/**/*.log",
"!lib/**/log.txt"
],
"concurrency": 5
},
"nyc": {
"reporter": [
"html",
"text-summary"
]
}
}