-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
{
"name": "galore",
"version": "0.0.69",
"author": "Sriram Panyam",
"description": "A toolbox for languages analyzers and parser generators.",
"homepage": "https://github.com/panyam/Galore#readme",
"license": "ISC",
"types": "lib/cjs/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/panyam/Galore.git"
},
"keywords": [
"languages",
"parsing"
],
"bugs": {
"url": "https://github.com/panyam/Galore/issues"
},
"dependencies": {
"@panyam/tsutils": "*",
"tlex": "*"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/jsdom": "^21.1.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"axios": "^0.22.0",
"babel-jest": "^27.2.5",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"jest-each": "^27.2.5",
"jest-mock": "^27.2.5",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"pre-commit": "^1.2.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"typescript-tslint-plugin": "^1.0.1"
},
"pre-commit": [
"precommit-msg",
"clean",
"build",
"lintfix",
"test"
],
"scripts": {
"clean": "rm -Rf lib && jest --clearCache && rm -rf static/lib",
"build": "npm run clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "jest --coverage --runInBand",
"lint": "eslint './src' --quiet --ext .ts --resolve-plugins-relative-to .",
"lintfix": "eslint 'src/**/*.ts' --quiet --fix --resolve-plugins-relative-to .",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"prepare": "npm run build",
"prepublishOnly": "echo prepublishOnly...",
"preversion": "npm run build && npm run lintfix",
"version": "git add -A src",
"postversion": "git push && git push --tags"
}
}