-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "gsoul-lang",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/darquezt/gsoul-lang.git"
},
"scripts": {
"start": "node build/src/index.js",
"clean": "rimraf coverage build tmp",
"lint": "eslint . --ext .ts",
"test": "jest",
"cli": "node packages/cli/build/index.js",
"build": "pnpm run -r build"
},
"dependencies": {
"@badrap/result": "^0.2.13",
"ramda": "^0.27.1",
"readline": "^1.3.0",
"ts-pattern": "^3.2.5",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@changesets/cli": "^2.25.2",
"@types/jest": "^27.0.1",
"@types/node": "^14.14.20",
"@types/ramda": "^0.27.44",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-jest": "^27.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^27.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tsutils": "^3.19.0",
"typescript": "^4.1.3"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
]
}
}