-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
58 lines (58 loc) · 1.29 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
{
"name": "sloc",
"version": "0.3.2",
"main": "lib/sloc",
"bin": "bin/sloc",
"description": "sloc is a simple tool to count SLOC (source lines of code)",
"author": "Markus Kohlhase",
"bugs": "http://github.com/flosse/sloc/issues",
"contributors": [
"Markus Kohlhase",
"feugy",
"Sören Gade",
"as3boyan",
"Mark Hahn",
"Hubert Sablonniere",
"programmerby",
"daclayton",
"Steven Vachon",
"yoshi6jp",
"Casper Hollingberry",
"Tobie Warburton"
],
"license": "MIT",
"engine": "node",
"dependencies": {
"async": "^3.2.4",
"cli-table": "^0.3.11",
"commander": "^11.0.0",
"readdirp": "^3.3.0"
},
"devDependencies": {
"@coffeelint/cli": "^5.2.11",
"chai": "^4.3.8",
"coffeescript": "^2.7.0",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/flosse/sloc.git"
},
"maintainers": [
{
"name": "Markus Kohlhase",
"email": "[email protected]",
"web": "http://github.com/flosse/"
}
],
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "coffeelint src/",
"watch": "coffee -o lib -cw src/",
"prepublish": "coffee -o lib/ -c src/",
"test": "npm run lint && mocha --require coffeescript/register --recursive spec/*.spec.coffee"
}
}