-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.81 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
69
70
71
72
73
74
75
76
{
"name": "saros",
"version": "0.2.4",
"description": "CLI tool to count lines",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"saros": "cli.js"
},
"files": [
"dist",
"cli.js"
],
"scripts": {
"coverage": "nyc yarn test",
"postcoverage": "nyc report --reporter=json",
"watch": "tsc -w",
"publish": "yarn publish --access public",
"build:dist": "tsc",
"build:exe": "pkg dist/bin.js --output release/saros",
"build:all": "yarn build:dist && gulp",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"test": "set DEBUG=saros:* && ava \"test/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/marvin-j97/saros.git"
},
"keywords": [
"line counter",
"cli"
],
"author": "marvin-j97",
"license": "ISC",
"bugs": {
"url": "https://github.com/marvin-j97/marvin-j97/issues"
},
"homepage": "https://github.com/marvin-j97/saros#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/float-equal": "^2.0.0",
"@types/gulp": "^4.0.6",
"@types/micromatch": "^4.0.1",
"@types/node": "^16.3.2",
"@types/yargs": "16",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.1.0",
"ava": "^3.13.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.1.0",
"float-equal": "^2.0.0",
"gulp": "^4.0.2",
"nyc": "^15.1.0",
"pkg": "^4.4.8",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.2"
},
"dependencies": {
"debug": "^4.1.1",
"micromatch": "^4.0.2",
"walk-it": "^0.0.1",
"yaml": "^2.0.0-10",
"yargs": "16"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
}
}