-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "iso-fns",
"description": "A string-based date-time library for Javascript.",
"version": "2.0.0-alpha.25",
"main": "./index.js",
"module": "./index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"types": "./index.d.mts",
"license": "MIT",
"homepage": "iso-fns.org",
"files": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/rubber-duck-software/iso-fns.git"
},
"scripts": {
"lint": "prettier --check ./src",
"format": "prettier --write .",
"build": "tsup src/index.ts --format esm,cjs --dts --outDir dist",
"build-package": "./scripts/release.sh",
"test": "yarn lint && c8 -r text node -r ts-node/register ./run-tests",
"cc": "c8 report -r lcovonly",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"docs": "node ./scripts/generate-docs.js",
"verify-build": "yarn format && yarn build && yarn test && yarn cc && yarn docs"
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"beartest-js": "^6.0.2",
"c8": "^7.7.3",
"coveralls": "^3.1.1",
"expect": "^27.0.6",
"prettier": "^2.3.2",
"shelljs": "^0.8.4",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typedoc": "^0.22.7",
"typedoc-plugin-markdown": "^3.11.3",
"typedoc-plugin-merge-modules": "^3.0.2",
"typescript": "^4.3.2"
}
}