-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "cocopa",
"version": "0.0.14",
"description": "Compiler Command Parser - Parser to extract include directories, defines, arguments and more from compiler command line invocations.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"test": "npm run build && npm run testonly",
"testonly": "jest --config jestconfig.json",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"prettier": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prettier-check": "prettier --check \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elektronikworkshop/cocopa.git"
},
"keywords": [
"compiler",
"parser",
"include",
"directories",
"defines",
"arguments",
"code",
"completion",
"intellisense"
],
"author": "Uli Franke -- Elektronik Workshop",
"license": "MIT",
"bugs": {
"url": "https://github.com/elektronikworkshop/cocopa/issues"
},
"homepage": "https://github.com/elektronikworkshop/cocopa#readme",
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"shlex": "^2.0.1"
}
}