-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 975 Bytes
/
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
{
"name": "aevum",
"version": "2.0.3",
"description": "Highly customizable time formatter",
"author": "PreFiXAUT <[email protected]>",
"license": "MIT",
"keywords": [
"time",
"formatter",
"customization"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha ./test/tests.js",
"coverage": "nyc --reporter=lcov mocha ./test/tests.js",
"report": "nyc --reporter=html mocha ./test/tests.js",
"benchmark": "node ./test/benchmarks.js",
"prepublish": "yarn run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/prefixaut/aevum"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1"
},
"peerDependencies": {
"tslib": "^1.9.0"
}
}