This repository was archived by the owner on Mar 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.32 KB
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
{
"name": "cmake_check",
"version": "0.2.0",
"description": "A static analyzer for CMakeLists.txt files and CMake modules",
"main": "lib/Main.js",
"scripts": {
"setup": "npm install",
"build": "tsc",
"watch": "tsc -w",
"test": "mocha -r ts-node/register test/**/*.ts",
"pkg": "pkg -t node8-linux-x64 --output .bin/cmake_check . && pkg -t node8-win-x64 --output .bin/cmake_check.exe ."
},
"files": [
"res",
"bin/cmake_check",
"lib",
"LICENSE"
],
"engines": {
"node": ">=8.11.4"
},
"author": "Daniel Graupner <github@dael.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DaelDe/cmake_check"
},
"bugs": {
"url": "https://github.com/DaelDe/cmake_check/issues"
},
"keywords": [
"cmake",
"linter",
"static_analysis",
"checker"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"@types/pegjs": "^0.10.1",
"@types/yargs": "^12.0.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"bin": {
"cmake_check": "./bin/cmake_check"
},
"dependencies": {
"ajv": "^6.5.5",
"pegjs": "^0.10.0",
"winston": "^3.1.0",
"yargs": "^12.0.4"
},
"pkg": {
"assets": "res/**/*"
}
}