-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "@xinghe/date-formatter",
"version": "0.1.0",
"description": "A javascript function `formatter`for date format copy from @uiw/formatter, Just test for CI.",
"main": "core/index.min.js",
"module": "core/index.esm.js",
"cjs": "core/index.cjs.js",
"typings": "core/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "rollup -c",
"start": "rollup -c -w",
"codecov": "cat ./coverage/lcov.info | codecov",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"cjs",
"esm",
"dist"
],
"keywords": [
"date-formatter",
"formatter",
"date",
"uiw"
],
"author": "Xing.he <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Gnotes/date-formatter.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"bannerjs": "^1.0.7",
"jest": "^25.1.0",
"rollup": "^2.1.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.21.2",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.8.3"
}
}