-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "nevnap",
"version": "1.1.1",
"description": "Névnap is a minimalist JavaScript library that displays hungarian namedays.",
"main": "dist/index.js",
"module": "src/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "webpack",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nevadavid/nevnap.git"
},
"author": "David Uri",
"keywords": [
"namedays",
"typescript",
"nevnap",
"nameday",
"hu"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nevadavid/nevnap/issues"
},
"homepage": "https://github.com/nevadavid/nevnap#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.2",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"typescript": "^4.3.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}