This repository has been archived by the owner on Sep 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.91 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": "tlox",
"version": "0.1.1",
"main": "lib/lox.ts",
"scripts": {
"compile": "tsc",
"compile:watch": "tsc --watch",
"start": "ts-node src/cli.ts",
"test": "mocha",
"test:watch": "mocha --watch --reporter min",
"test:cov": "nyc --reporter=text --reporter=html mocha & start ./coverage/index.html",
"coverage": "nyc --reporter=text mocha",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src/**/* ./test/**/*.ts --color"
},
"bin": {
"bin/lox.js": "lox"
},
"husky": {
"hooks": {
"pre-push": "env FORCE_COLOR=1 npm run lint && npm test -- --reporter=progress"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"description": "Lox language implementation in Typescript, from http://craftinginterpreters.com",
"repository": {
"type": "git",
"url": "git+https://github.com/cruzelante098/tlox.git"
},
"author": "Francisco Cruz <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cruzelante098/tlox/issues"
},
"homepage": "https://github.com/cruzelante098/tlox",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"@types/readline-sync": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
},
"dependencies": {
"chalk": "^2.4.2",
"readline-sync": "^1.4.9"
}
}