-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
{
"name": "pomeranian-durations",
"version": "1.12.0",
"description": "An immutable duration library based on the ISO-8601 format for durations.",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"readme": "README.md",
"sideEffects": false,
"scripts": {
"rebuild-docs-index": "node src/_generate_docs.js > README.md && node src/_generate_index.js > src/index.js && git commit -m 'Regenerate docs and index' README.md src/index.js || true",
"build": "npm run rebuild-docs-index && babel src/ --out-dir lib/ --ignore *.spec.js && npm run build:esm",
"build:esm": "esbuild src/index.js --bundle --format=esm --outfile=lib/index.esm.js --minify",
"lint": "eslint-crewmeister src",
"gen-test-report": "stryker run",
"circular": "madge src --circular",
"check-types": "tsc --noemit",
"test": "mocha -r ts-node/register -r tsconfig-paths/register src/{*,**/*,**/**/*,**/**/**/*}.spec.{js,ts} --watch-extensions js,ts --recursive",
"preversion": "npm run lint && npm run test && npm run build",
"prepush": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webPapaya/pomeranian.git"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-typescript": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@stryker-mutator/core": "^5.0.0",
"@stryker-mutator/mocha-runner": "^5.0.0",
"@stryker-mutator/typescript": "^4.0.0",
"@types/mocha": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"common-tags": "^1.8.0",
"esbuild": "^0.12.0",
"eslint-config-crewmeister": "latest",
"hamjest": "^3.7.2",
"husky": "^6.0.0",
"jsdoc-to-markdown": "^7.0.1",
"madge": "^4.0.2",
"mocha": "^8.4.0",
"stryker-cli": "^1.0.1",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
},
"keywords": [
"time",
"duration",
"ISO-8601",
"ISO",
"8601"
],
"author": "Webpapaya",
"license": "ISC",
"bugs": {
"url": "https://github.com/webPapaya/pomeranian/issues"
},
"homepage": "https://github.com/webPapaya/pomeranian",
"types": "./typings/index.d.ts"
}