-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 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
{
"name": "remote-abap-compiler",
"version": "2.1.0",
"description": "Remote ABAP compilation",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"tslint": "^5.17.0",
"clean": "rimraf ./dist",
"build": "tsc && npm run lint",
"test": "mocha --timeout 15000 --require ts-node/register test/**/*.ts",
"lint": "tslint -c tslint.json 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cohomology/remote-abap-compiler.git"
},
"keywords": [
"SAP",
"R/3",
"ABAP",
"compiler"
],
"author": "SAP",
"license": "ISC",
"bugs": {
"url": "https://github.com/cohomology/remote-abap-compiler/issues"
},
"homepage": "https://github.com/cohomology/remote-abap-compiler#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"@types/randomstring": "^1.1.6",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"abap-adt-api": "^0.5.29",
"randomstring": "^1.1.5",
"request-debug": "^0.2.0"
},
"files": [
"/lib",
"/dist"
]
}