This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.61 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
{
"name": "socko",
"version": "2.1.0",
"description": "Hierarchical File Weaver",
"keywords": [
"template",
"engine",
"hierarchy",
"hierarchical",
"files",
"configuration",
"socko"
],
"bin": {
"socko": "./index.js"
},
"author": "Dennis Ploeger <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:dodevops/socko.git"
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 88,
"statements": 88,
"functions": 58,
"branches": 82,
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "test/coverage"
},
"files": [
"index.d.ts",
"index.js",
"index.js.map",
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.d.ts"
],
"dependencies": {
"bluebird": "^3.5.1",
"loglevel": "^1.6.0",
"clime": "^0.5.9",
"socko-api": "1.1.1",
"socko-converter-file": "1.1.0",
"file-hierarchy": "^2.0.0",
"loglevel-plugin-prefix": "^0.7.1",
"del": "^3.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/del": "^3.0.0",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.34",
"@types/loglevel": "^1.5.3",
"@types/node": "^9.4.7",
"baseman": "^0.1.0-dev.8",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-coveralls": "^1.0.1",
"grunt-shell": "^2.1.0",
"grunt-ts": "^6.0.0-beta.19",
"grunt-tslint": "^5.0.1",
"nyc": "^11.6.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2"
}
}