-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "@pyramation/git-count",
"version": "0.0.1",
"description": "git count",
"author": "Dan Lynch <[email protected]>",
"homepage": "https://github.com/pyramation/git-count#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/pyramation/git-count"
},
"bugs": {
"url": "https://github.com/pyramation/git-count/issues"
},
"scripts": {
"copy": "copyfiles -f LICENSE README.md package.json dist",
"clean": "rimraf dist/**",
"prepare": "npm run build",
"dev": "ts-node src/index",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"rimraf": "4.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"keywords": [],
"dependencies": {
"chalk": "4.1.2",
"shelljs": "^0.8.5"
}
}