-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
{
"name": "@47ng/badger",
"version": "0.2.1",
"description": "Generate badges for GitHub repositories",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/badger"
},
"keywords": [
"generator",
"badges",
"github"
],
"publishConfig": {
"access": "public"
},
"bin": {
"badger": "dist/index.js"
},
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"dev": "nodemon -e ts,.env -w .env -w . -x 'run-s build:ts test'",
"build:clean": "rm -rf ./dist",
"build:ts": "tsc",
"build": "run-s build:clean build:ts",
"ci": "run-s test build"
},
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"husky": "^2.7.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-push": "yarn ci"
}
}
}