-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
77
78
79
80
{
"name": "@dotchris90/cpp-tooling",
"version": "0.0.4",
"description": "API to access conan, cmake, dot, doxygen, etc.",
"main": "dist/cpp-tooling.js",
"bin": {
"cps": "dist/main.js"
},
"umd:main": "dist/cpp-tooling.umd.js",
"module": "dist/cpp-tooling.mjs",
"files": [
"dist",
"readme.md"
],
"types": "dist/index.d.ts",
"dependencies": {
"@dotchris90/utils-extensions": "^0.0.4",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/terminal-kit": "^2.5.0",
"command-exists": "^1.2.9",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"fse": "^4.0.1",
"js-yaml": "^4.1.0",
"terminal-kit": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unicorn": "^32.0.1",
"jest": "^26.4.2",
"microbundle": "^0.13.0",
"prettier": "^2.0.4",
"shx": "^0.3.3",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"scripts": {
"prepublish": "npm run build",
"debug": "tsc --sourcemap",
"try": "node dist/main.js",
"build": "shx rm -rf dist && tsc -b",
"postbuild": "shx cp -R src/Templates dist",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false",
"test": "jest --coverage --silent=false",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotchris90/cpp-tooling"
},
"keywords": [],
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
"dist",
"coverage"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"author": "Christian Kahr",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotchris90/cpp-tooling/issues"
},
"homepage": "https://github.com/dotchris90/cpp-tooling#readme"
}