-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "github-count",
"version": "0.0.1",
"description": "github-count",
"author": "Dan Lynch <[email protected]>",
"homepage": "https://github.com/pyramation/github-count#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"typings": "types/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"types",
"main"
],
"scripts": {
"build": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:ts": "tsc --project ./tsconfig.json",
"prepare": "npm run build",
"dev": "cross-env NODE_ENV=development babel-node src/index --extensions \".tsx,.ts,.js\"",
"watch": "cross-env NODE_ENV=development babel-watch src/index --extensions \".tsx,.ts,.js\"",
"lint": "eslint .",
"format": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pyramation/github-count"
},
"keywords": [],
"bugs": {
"url": "https://github.com/pyramation/github-count/issues"
},
"jest": {
"testPathIgnorePatterns": [
"main/",
"module/",
"types/"
]
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.0.3",
"babel-watch": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"jest-in-case": "^1.0.2",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"human-format": "^1.2.0",
"isomorphic-fetch": "^3.0.0",
"json2csv": "^6.0.0-alpha.2",
"mkdirp": "^3.0.1"
}
}