-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 943 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
{
"name": "@aquaron/time",
"version": "1.2.0",
"description": "Time utilities",
"main": "dist/index",
"typings": "dist/index",
"type": "commonjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "tsc && jest",
"clean": "rm -rf dist",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"showPackFiles": "npm pack --dry-run --json | jq -r '.[].files[].path'"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aquaron/time.git"
},
"keywords": [
"time",
"conversion"
],
"author": "Paul Pham <npm@aquaron.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aquaron/time/issues"
},
"homepage": "https://github.com/aquaron/time#readme",
"devDependencies": {
"jest": "^29.3.1",
"typescript": "^5.0.2"
},
"files": [
"dist",
"!**/*.tsbuildinfo"
]
}