-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "school-year-group",
"version": "0.0.7",
"description": "A really simple module to return the normal year groups for a given date of birth. Currently only supporting English school years.",
"main": "index.js",
"builtEntry": "./build/index.js",
"private": false,
"keywords": [
"education",
"school",
"academic",
"year",
"age",
"date"
],
"bugs": {
"url": "https://github.com/aarhus/school-year-group/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/aarhus/school-year-group"
},
"homepage": "https://github.com/aarhus/school-year-group",
"scripts": {
"build": "npx babel src -d ./build --copy-files",
"dev": "npx babel src -d ./build --copy-files --watch",
"test": "npx jest"
},
"author": "Matt Hampton (https://github.com/aarhus)",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"jest": "^29.7.0"
}
}