This repository was archived by the owner on Aug 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.48 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.48 KB
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
{
"name": "@atomist/antlr",
"version": "1.0.3",
"description": "Atomist client integration with ANTLR for TypeScript",
"author": {
"name": "Atomist",
"email": "support@atomist.com",
"url": "https://atomist.com/"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/atomist/antlr-ts#readme",
"repository": {
"type": "git",
"url": "https://github.com/atomist/antlr-ts.git"
},
"bugs": {
"url": "https://github.com/atomist/antlr-ts/issues"
},
"keywords": [
"antlr",
"atomist",
"parser"
],
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@jessitron/antlr4ts": "0.4.0-dev",
"@types/lodash": "^4.14.118",
"@types/node": "^14.0.20",
"antlr4ts": "^0.5.0-alpha.1",
"lodash": "^4.17.10"
},
"peerDependencies": {
"@atomist/automation-client": ">=1.0.1",
"@atomist/tree-path": ">=1.0.1"
},
"devDependencies": {
"@atomist/automation-client": "2.0.0-master.20200701135449",
"@atomist/tree-path": "^1.0.1",
"@types/mocha": "^5.2.5",
"@types/power-assert": "^1.5.0",
"antlr4ts-cli": "^0.4.0-alpha.4",
"espower-typescript": "^9.0.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.0",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
},
"directories": {
"test": "test"
},
"scripts": {
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s clean compile test lint doc",
"clean": "run-p clean:compile clean:doc clean:run",
"clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
"clean:dist": "run-s clean clean:npm",
"clean:doc": "rimraf doc",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"compile": "tsc --project .",
"doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" --exclude \"**/antlr-gen/**\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
"typedoc": "npm run doc"
}
}