-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "phosphor-compiler",
"description": "A compiler for the Phosphor programming language.",
"author": "Benedikt Magnus",
"version": "0.2.1-dev",
"license": "MIT",
"keywords": [
"Phosphor",
"compiler",
"language"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PhosphorLang/Compiler.git"
},
"bugs": {
"url": "https://github.com/PhosphorLang/Compiler/issues"
},
"bin": {
"phc": "./bin/main.js"
},
"engines": {
"node": ">=18.12.1"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "11.1.0"
},
"devDependencies": {
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "18.19.4",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"chai": "4.3.10",
"eslint": "8.56.0",
"eslint-config-phosphor": "^1.3.1",
"mocha": "10.2.0",
"nyc": "15.1.0",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"bundledDependencies": [
"chalk",
"commander"
],
"files": [
"bin",
"LICENSE",
"README.md"
],
"main": "bin/main.js",
"scripts": {
"build": "tsc -b",
"build:release": "tsc -p tsconfig.release.json",
"clean": "rm -rf bin && rm -rf tmp && rm -rf tests/tmp rm -rf coverage",
"coverage": "nyc npm run test",
"coverage:coveralls": "nyc --reporter=lcov npm run test",
"coverage:text": "nyc --reporter=text npm run test",
"fullCheck": "npm run build && npm run lint && npm test",
"lint": "eslint \"src/**/*.ts\"",
"prepack": "npm run clean && npm run build:release",
"start": "node bin/main.js",
"test": "TS_NODE_PROJECT='tests/tsconfig.json' mocha --timeout 60000 -r ts-node/register 'tests/**/*.ts'"
},
"private": true
}