-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "yamprint",
"version": "0.8.1",
"description": "Library for pretty-printing objects inspired by YAML.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "node ./dist/__tests__/runner.js",
"watch": "gulp watch",
"build": "gulp build"
},
"repository": "https://github.com/GregRos/yamprint",
"directories": {
"test": "dist/__tests__",
"lib": "dist/lib"
},
"keywords": [
"pretty-print",
"print",
"stringify",
"toString",
"log",
"yaml",
"console"
],
"files": [
"dist/",
"src/"
],
"author": "Greg Rosenbaum",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/gulp": "^4.0.4",
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.30",
"chalk": "^2.1.0",
"codecov": "^2.3.0",
"del": "^3.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-typescript": "^3.2.2",
"istanbul": "^0.4.5",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"lodash": "^4.17.4",
"merge2": "^1.2.0",
"nyc": "^11.2.1",
"source-map-support": "^0.5.0",
"tslint": "^5.9.1",
"tslint-consistent-codestyle": "^1.11.0",
"typescript": "^2.5.2",
"@types/lodash": "^4.14.96"
},
"dependencies": {
"parameter.js": "^1.0.0",
"tslib": "^1.7.1"
}
}