-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.03 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
{
"name": "programmer-almanac-generator",
"version": "0.9.7",
"description": "Daily Almanac Event Calculator for programmer.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"src"
],
"typings": "./dist/index.d.ts",
"scripts": {
"build": "rollup --config",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Kagashino/programmer-almanac-generator.git"
},
"author": "Kagashino",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"rollup": "^2.0.6",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3"
},
"dependencies": {},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"testMatch": [
"**/__tests__/*.test.ts"
]
}
}