-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "@creditkarma/thrift2md",
"version": "0.0.1",
"description": "Thrift to Markdown converter",
"main": "dist/index.js",
"bin": "dist/bin/index.js",
"scripts": {
"clean": "rimraf coverage/ dist/ node_modules/",
"build": "tsc",
"lint": "tslint src/**/*",
"test": "tsc && lab --coverage --coverage-path ./dist/main --sourcemaps ./dist/test/**/*.spec.js",
"test:watch": "watch 'npm test' ./src",
"coverage": "lab --coverage --sourcemaps -r console -o stdout -r html -o ./coverage/coverage.html ./dist/test/**/*.spec.js",
"release:patch": "npm version patch && npm run release:publish",
"release:minor": "npm version minor && npm run release:publish",
"release:major": "npm version major && npm run release:publish",
"release:publish": "npm publish && git push --follow-tags"
},
"keywords": [
"thrift",
"markdown"
],
"author": "Nick Nance",
"license": "ISC",
"devDependencies": {
"@types/code": "^4.0.4",
"@types/json2md": "^1.5.0",
"@types/lab": "^11.1.0",
"@types/node": "^8.10.10",
"@types/rimraf": "^2.0.2",
"@types/thrift": "^0.10.7",
"code": "^5.2.0",
"lab": "^15.4.1",
"tslint": "^5.9.1",
"typescript": "^2.8.3",
"watch": "^1.0.2"
},
"dependencies": {
"@creditkarma/thrift-parser": "^1.0.6",
"json2md": "^1.6.1",
"rimraf": "^2.6.2"
}
}