-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "pseudo-compiler",
"version": "1.0.0",
"description": "Educational compiler built in TypeScript to execute Pseudo lang",
"main": "build/index.js",
"repository": "https://github.com/OzairP/PseudoLangCompiler",
"author": "Ozair Patel <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf ./build && tsc",
"start": "node ./build",
"test": "jest",
"lint": "tslint -p .",
"lint:fix": "yarn tslint --fix",
"prettier": "prettier \"src/**/*.ts\"",
"prettier:fix": "yarn prettier --write"
},
"jest": {
"preset": "ts-jest",
"clearMocks": true,
"collectCoverage": true,
"testEnvironment": "node",
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"index.ts$",
"<rootDir>/language/"
],
"testMatch": [
"<rootDir>/src/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"chalk": "^4.1.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"sloc": "^0.2.1",
"source-map-support": "^0.5.10",
"ts-jest": "^26.1.0",
"ts-node": "^8.0.3",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"dependencies": {}
}