-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
68 lines (68 loc) · 1.63 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
{
"name": "clio",
"version": "0.12.0",
"description": "Clio Programming Language",
"main": "packages/cli/index.js",
"type": "module",
"scripts": {
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write .",
"pretest": "npm run bootstrap",
"bootstrap": "lerna bootstrap --hoist",
"link": "lerna link",
"test": "jest --collect-coverage",
"test:nocov": "jest --no-coverage"
},
"engines": {
"node": ">=14.14.0",
"npm": ">=6.12.0"
},
"author": "Pouya Eghbali",
"contributors": [
{
"email": "ciao@micheleriva.it",
"name": "Michele Riva",
"url": "https://www.micheleriva.it"
},
{
"email": "garritfranke@gmail.com",
"name": "Garrit Franke",
"url": "https://garrit.xyz"
}
],
"license": "Apache-2.0",
"bin": {
"clio": "packages/cli/index.js",
"clio-language-server": "packages/language-server/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/clio-lang/clio.git"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"bean-parser": "2.1.0",
"chalk": "4.1.2",
"clio-lang-cli": "0.12.0",
"decompress": "^4.2.1",
"del": "6.0.0",
"enquirer": "^2.3.6",
"merge": "2.1.1",
"node-fetch": "^2.6.1",
"npm-registry-fetch": "^10.1.2",
"ora": "^5.4.1",
"sializer": "^0.1.1",
"source-map": "^0.7.3",
"tmp": "0.2.1",
"ws": "^7.4.6",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.2.4",
"lerna": "^4.0.0",
"prettier": "^2.3.0"
}
}