-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.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
{
"name": "@statengine/shiftly",
"version": "0.0.128",
"description": "Calculate common public safety shift schedules.",
"main": "lib/",
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js src/** test/**",
"test": "mocha --require @babel/register",
"compile": "babel -d lib/ src/ --copy-files",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StatEngine/shiftly.git"
},
"keywords": [
"statengine",
"shifts",
"fire",
"department",
"ems"
],
"author": "Prominent Edge LLC",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/StatEngine/shiftly/issues"
},
"homepage": "https://github.com/StatEngine/shiftly#readme",
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/register": "^7.12.13",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-react": "^7.22.0",
"mocha": "^8.3.0"
},
"dependencies": {
"moment": "^2.29.1",
"moment-timezone": "^0.5.33"
}
}