-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "psl-parser",
"version": "0.0.3",
"description": "Profile Scripting Language Parser",
"keywords": [
"PSL",
"parser",
"profile",
"scripting",
"language"
],
"homepage": "https://github.com/ing-bank/psl-parser#readme",
"bugs": {
"url": "https://github.com/ing-bank/psl-parser/issues"
},
"license": "MIT",
"author": "atiplea",
"contributors": [
"SOliveira"
],
"main": "lib/index.js",
"types": "lib/types/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ing-bank/psl-parser.git"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc --build src",
"lint": "tslint -c tslint.json --project .",
"watch": "npm run build -- -watch",
"pretest": "tsc --build src",
"test": "jest"
},
"dependencies": {
"fs-extra": "^10.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"jest": "^29.2.1",
"ts-jest": "^29.0.3",
"tslint": "^5.20.1",
"typescript": "^4.8.4",
"jsonc-parser": "^3.2.0",
"rimraf": "^3.0.2"
}
}