-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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": "@moebius/joda-helpers",
"description": "Useful helpers for js-joda",
"version": "0.4.1",
"author": "Slava Fomin II <slava@fomin.io> (https://slava.fomin.io)",
"homepage": "https://github.com/moebius-mlm/joda-helpers",
"repository": "https://github.com/moebius-mlm/joda-helpers.git",
"bugs": "https://github.com/moebius-mlm/joda-helpers/issues",
"license": "MIT",
"scripts": {
"build": "run-s clean build:tsc",
"build:prod": "run-s clean build:tsc:prod:cjs build:tsc:prod:esm",
"build:tsc": "tsc",
"build:tsc:prod:cjs": "tsc -p tsconfig.prod.cjs.json",
"build:tsc:prod:esm": "tsc -p ./tsconfig.prod.esm.json",
"clean": "rm -rf ./dist/*",
"prepublishOnly": "run-s test build:prod",
"test": "run-s build test:mocha",
"test:mocha": "mocha ./dist/test/setup.js ./dist/test/**/*.spec.js"
},
"keywords": [
"date",
"helper",
"joda-time",
"js-joda",
"time",
"timezone",
"typescript"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"js-joda": "^1.11.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"chai": "^4.2.0",
"js-joda": "^1.11.0",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"source-map-support": "^0.5.19",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
}
}