-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "thrift-fmt-ts",
"version": "1.3.0",
"description": "A formatter of Thrift, re-implement of python thrift-fmt",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"src/*.ts",
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf ./lib/",
"lint": "eslint .",
"test": "mocha -r ts-node/register 'test/*.ts'",
"coverage": "tsc && nyc --reporter=text --reporter=html --reporter=lcov npm run test",
"typecheck": "tsc --noEmit",
"prepack": "npm run clean && npm run build && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thrift-labs/thrift-fmt-ts"
},
"keywords": [
"Thrift",
"Formatter",
"thrift-fmt"
],
"author": "alingse",
"license": "MIT",
"bugs": {
"url": "https://github.com/thrift-labs/thrift-fmt-ts/issues"
},
"homepage": "https://github.com/thrift-labs/thrift-fmt-ts#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"thrift-parser-ts": "^1.0.8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/assert": "^1.5.6",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.7.2"
}
}