-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "schedule-utilities",
"version": "0.1.1",
"description": "Schedule processing utilities",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"encryptenv": "jet encrypt docker/deploy.env docker/deploy.env.encrypted --key-path=mirainc_schedule-utilities.aes",
"decryptenv": "jet decrypt docker/deploy.env.encrypted docker/deploy.env --key-path=mirainc_schedule-utilities.aes"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mirainc/schedule-utilities.git"
},
"author": "Mira <engineering@getmira.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mirainc/schedule-utilities/issues"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"homepage": "https://github.com/mirainc/schedule-utilities#readme",
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/moment-timezone": "^0.5.12",
"jest": "^22.0.6",
"rrule": "^2.6.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"rrule-alt": "^2.2.7"
},
"jest": {
"testEnvironment": "node"
}
}