-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "coq-of-ts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"start": "ts-node",
"version": "tsc --version",
"test": "npx jest --coverage=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clarus/coq-of-ts.git"
},
"author": "Guillaume Claret",
"license": "MIT",
"bugs": {
"url": "https://github.com/clarus/coq-of-ts/issues"
},
"homepage": "https://github.com/clarus/coq-of-ts#readme",
"dependencies": {
"prettier": "^2.8.3"
},
"devDependencies": {
"@babel/types": "^7.20.7",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.4.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"volta": {
"node": "18.13.0"
}
}