forked from abaplint/abaplint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.58 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
81
{
"name": "abaplint",
"version": "1.6.12",
"description": "Linter for ABAP",
"bin": {
"abaplint": "./abaplint",
"abaplint-x": "./abaplint-x"
},
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"tslint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"precompile": "rm -rf build",
"compile": "tsc --pretty",
"postcompile": "sh version.sh",
"pretest": "npm run compile",
"test": "mocha --recursive --reporter progress build/test",
"posttest": "npm run tslint",
"precoverage": "tsc --sourceMap && istanbul cover ./node_modules/mocha/bin/_mocha build/test --report lcovonly -- -R spec --recursive",
"coverage": "remap-istanbul -i coverage/coverage.json -o coverage/coverage-remap.json",
"postcoverage": "codecov -f coverage/coverage-remap.json",
"prebrowserify": "tsc --pretty --target ES3 --lib es2017 --outdir build/web",
"browserify": "sh version.sh",
"postbrowserify": "browserify build/web/src/index_web.js -o build/bundle.js -s abaplint",
"uglify": "uglifyjs build/bundle.js --compress warnings=false --mangle --keep-fnames -o build/bundle.js",
"postuglify": "rm -rf build/web",
"preweb.playground": "npm run browserify",
"web.playground": "npm run uglify",
"postweb.playground": "sh web/playground.sh",
"web.syntax": "sh web/syntax.sh",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larshp/abaplint.git"
},
"engines": {
"node": ">=10.5.0",
"npm": ">= 6.0.0"
},
"keywords": [
"ABAP",
"lint"
],
"author": "Lars Hvam Petersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/larshp/abaplint/issues"
},
"homepage": "https://github.com/larshp/abaplint#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/glob": "^7.1.1",
"@types/minimatch": "^3.0.3",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.15",
"@types/progress": "^2.0.3",
"browserify": "^16.0.0",
"chai": "^4.2.0",
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"railroad-diagrams": "git+https://github.com/tabatkins/railroad-diagrams#gh-pages",
"remap-istanbul": "^0.12.0",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.2.2",
"uglify-js": "^3.0.27"
},
"dependencies": {
"glob": "^7.1.3",
"minimist": "^1.2.0",
"progress": "^2.0.3",
"vscode-languageserver-protocol": "^3.14.1",
"xml-js": "^1.6.8"
}
}