-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.29 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
53
54
{
"name": "shleemy",
"version": "1.2.2",
"main": "./dist/index.js",
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^26.6.3",
"prettier": "^3.2.5",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"author": {
"name": "Ashleigh Simonelli",
"email": "[email protected]",
"url": "http://ashleighsimonelli.co.uk"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bashleigh/shleemy"
},
"description": "Human readable time manipulation. Turn '2021-01-27T22:36:54.757Z' into '6 weeks ago' without going to time prison.",
"keywords": [
"time",
"manipulation",
"human readable",
"from time",
"to time",
"duration",
"dates",
"shleemy",
"time prison"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build": "rm -rf ./dist && tsc && npm run build:index",
"build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"prepublish": "npm run format && npm run build",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}