-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "iso-duration",
"description": "Parse & sum ISO 8601 duration to date",
"version": "1.0.0",
"license": "MIT",
"typings": "dist/index.d.ts",
"main": "dist/iso-duration.js",
"umd:main": "dist/iso-duration.umd.js",
"jsnext:main": "iso-duration.es6.js",
"module": "dist/iso-duration.mjs",
"source": "index.ts",
"keywords": [
"typescript",
"parse",
"ISO 8601",
"duration",
"sum",
"date"
],
"repository": "github:adriengibrat/iso-duration",
"author": "Adrien Gibrat <[email protected]> (https://github.com/adriengibrat)",
"scripts": {
"start": "npm run build -- --watch & npm test -- --watch --notify --onlyChanged",
"test": "jest --coverage",
"build": "microbundle --name duration"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.2.6"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(test|spec)\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/.rts2*/",
"<rootDir>/dist/"
]
}
}