-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 968 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 968 Bytes
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
{
"name": "codegem-tools",
"version": "0.1.1-alpha.1",
"main": "build/mod.js",
"license": "MIT",
"registry": "",
"homepage": "",
"files": [
"build/*"
],
"type": "module",
"scripts": {
"dev": "tsm src/__dev.ts",
"build": "rimraf build && tsc",
"jest": "yarn build && jest --coverage",
"tslint": "tsc --noEmit --pretty"
},
"pre-commit": [
"tslint",
"jest"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^27.2.3",
"eslint": "^7.32.0",
"jest": "^27.2.3",
"pre-commit": "^1.2.2",
"renew-it": "1.5.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"tsm": "^2.2.1",
"typescript": "^4.4.3"
}
}