-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "@betahuhn/config",
"version": "1.2.0",
"description": "Common configuration files for my projects",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run copy-helpers",
"copy-helpers": "mkdir -p dist/config/helpers && cp -r config/helpers dist/config",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betahuhn/config.git"
},
"keywords": [
"MIT"
],
"author": "Maximilian Schiller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betahuhn/config/issues"
},
"homepage": "https://github.com/betahuhn/config#readme",
"devDependencies": {
"@types/dateformat": "^3.0.1",
"@types/eslint": "^7.2.6",
"@types/semantic-release": "^17.2.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.6",
"dateformat": "^3.0.3",
"semantic-release": "^17.3.1",
"semantic-release-gitmoji": "^1.3.4"
},
"publishConfig": {
"access": "public"
}
}