-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 916 Bytes
/
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
{
"name": "kl-compiler",
"version": "1.0.2",
"description": "Compiler for KASINAO LANGUAGE",
"main": "src/index.js",
"scripts": {
"start": "node src/compiler/index.js --file",
"debug": "node src/compiler/index.js --debug true --file",
"api:run": "node src/api/index.js",
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"prepare": "husky install"
},
"author": "Matheus Kruger",
"license": "MIT",
"dependencies": {
"cli-highlight": "^2.1.10",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"jest-coverage-badges": "^1.1.2",
"yargs": "^16.1.0"
},
"devDependencies": {
"husky": "^5.1.2",
"jest": "^26.6.3"
},
"bin": "./src/compiler/index.js"
}