-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "st-parser",
"version": "0.0.0",
"description": "Parse structured text code.",
"main": "index.ts",
"scripts": {
"start": "ts-node ./src/index.ts",
"start-watch": "nodemon",
"test": "mocha -r ts-node/register test/**/*.ts",
"test-watch": "mocha -r ts-node/register test/**/*.ts --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/danielbolla/StParser"
},
"keywords": [
"st",
"structured text",
"plc",
"parser",
"lexer"
],
"author": "Daniel Bolla",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielbolla/StParser/issues"
},
"homepage": "https://github.com/danielbolla/StParser",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"fs-extra": "^9.0.0"
}
}