-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "date-easter",
"version": "1.0.3",
"description": "Calculates Easter for a given year",
"keywords": [
"easter"
],
"homepage": "https://github.com/commenthol/date-easter#readme",
"bugs": {
"url": "https://github.com/commenthol/date-easter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/date-easter.git"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"maintainers": [
"commenthol <commenthol@gmail.com>"
],
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"types": "./types",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"src",
"lib",
"types/*.d.ts"
],
"scripts": {
"all": "npm-run-all clean lint build test",
"build": "rollup -c",
"ci": "npm test",
"clean": "rimraf lib es coverage .nyc_output",
"clean:all": "npm-run-all clean clean:node_modules",
"clean:node_modules": "rimraf node_modules",
"coverage": "c8 -r text -r html npm run test:ci",
"lint": "eslint --ext .js .",
"prepublishOnly": "npm run all",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "npm-run-all test:ci",
"test:ci": "mocha"
},
"mocha": {
"checkLeaks": true,
"colors": true
},
"devDependencies": {
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=12.0.0"
}
}