-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "gtmplant",
"version": "0.1.5",
"description": "GTM to PlantUML",
"files": [
"dist"
],
"main": "dist/convertToPlant.js",
"types": "dist/convertToPlant.d.ts",
"bin": {
"gtmplant": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:dev": "tsc --sourceMap -w",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcosvrs/gtmplant.git"
},
"keywords": [
"Google",
"Tag",
"Manager",
"Google Tag Manager",
"GTM",
"PlantUML",
"Diagram"
],
"author": "Marcos V. Rubido <[email protected]> (https://marcosvrs.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcosvrs/gtmplant/issues"
},
"homepage": "https://github.com/marcosvrs/gtmplant#readme",
"dependencies": {
"ajv": "^6.10.0",
"commander": "^2.20.0",
"plantuml-encoder": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-microsoft-contrib": "^6.1.1",
"typescript": "^3.4.5"
}
}