-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "@brombaut/monkey-parser",
"version": "1.0.2",
"description": "Parser for the Monkey programming language. Useful for visualizing the generated AST.",
"main": "build",
"files": [
"build/**/*"
],
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"dev": "nodemon --exec ts-node src/dev.index.ts --watch src",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brombaut/monkey-parser.git"
},
"keywords": [
"monkey",
"parser"
],
"author": "brombaut",
"license": "ISC",
"bugs": {
"url": "https://github.com/brombaut/monkey-parser/issues"
},
"homepage": "https://github.com/brombaut/monkey-parser#readme",
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@types/source-map-support": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.5.4",
"nodemon": "^2.0.4",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"serve": "^11.3.0",
"source-map-support": "^0.5.19",
"ts-jest": "^25.5.1-alpha.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"dependencies": {
"np": "^6.2.3",
"readline": "^1.3.0"
}
}