-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "typescript-standard",
"version": "0.0.0",
"engines": {
"node": ">=4.0.0"
},
"description": "Zero-configuration TypeScript Standard Validator & Formatter",
"main": "bin/index.js",
"bin": {
"standard": "bin/cli.js"
},
"scripts": {
"test": "node_modules/.bin/standard --pretty",
"build": "npm run build:clean && npm run build:tsc && npm run build:webpack && npm run build:npm",
"build:clean": "rm -rf ./bin ./release",
"build:tsc": "node_modules/.bin/tsc --noEmit -p tsconfig.release.json",
"build:webpack": "node_modules/.bin/webpack --display-error-details --config ./webpack.config.ts",
"build:npm": "cp LICENSE README.md tslint.json tsconfig.json ./release && cp package.release.json ./release/package.json",
"release": "npm run build && npm run release:npm",
"release:npm": "cd ./release && npm publish"
},
"files": [
"bin",
"LICENSE",
"README.md",
"tslint.json",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git://github.com/e2tox/typescript-standard.git"
},
"keywords": [
"format",
"pretty",
"tslint",
"typescript",
"standard",
"fmt",
"ts"
],
"author": {
"name": "Ling Zhang",
"url": "https://e2.to/x"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/e2tox/typescript-standard/issues"
},
"homepage": "https://github.com/e2tox/typescript-standard",
"devDependencies": {
"@types/glob": "^5.0.35",
"@types/node": "^9.4.6",
"ts-loader": "^4.0.1",
"ts-node": "^5.0.1",
"typescript-standard": "^0.3.32",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10"
},
"dependencies": {
"glob": "^7.1.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}