-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "typescript-formatter",
"version": "7.2.2",
"description": "Formatter of TypeScript code",
"main": "./index",
"bin": {
"tsfmt": "./bin/tsfmt"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build": "tslint --fix -c _tslint.json -p tsconfig.json && tsfmt -r && tsc",
"test": "npm run build && mocha --reporter spec --timeout 20000 --require intelli-espower-loader"
},
"keywords": [
"TypeScript"
],
"author": "vvakame+dev@gmail.com",
"license": "MIT",
"homepage": "https://github.com/vvakame/typescript-formatter",
"repository": {
"type": "git",
"url": "git@github.com:vvakame/typescript-formatter.git"
},
"bugs": {
"url": "https://github.com/vvakame/typescript-formatter/issues"
},
"engines": {
"node": ">= 4.2.0"
},
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"commandpost": "^1.0.0",
"editorconfig": "^0.15.0"
},
"peerDependencies": {
"typescript": "^2.1.6 || ^3.0.0 || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev"
},
"devDependencies": {
"@types/mkdirp": "^0.5.0",
"@types/mocha": "^5.0.0",
"@types/node": "^10.3.0",
"@types/power-assert": "^1.5.0",
"conventional-changelog-cli": "^2.0.0",
"intelli-espower-loader": "^1.0.1",
"mkdirp": "^0.5.1",
"mocha": "^5.1.0",
"power-assert": "^1.5.0",
"tslint": "^5.1.0",
"typescript": ">=3.0.0-rc",
"typescript-formatter": "^7.2.2"
}
}