-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.79 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
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
77
78
79
80
81
82
83
84
{
"name": "@nesto-software/moment-holiday-monorepo",
"version": "1.0.0",
"description": "A Moment.js plugin for handling holidays.",
"private": true,
"keywords": [
"moment",
"momentjs",
"holiday",
"holidays"
],
"author": "Nesto Software GmbH",
"contributors": [
"Martin Löper <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:nesto-software/moment-holiday.git"
},
"bugs": {
"url": "https://github.com/nesto-software/moment-holiday/issues"
},
"homepage": "https://github.com/nesto-software/moment-holiday",
"license": "MIT",
"peerDependencies": {
"moment": ">=2.0.0",
"mongoose": "5.3.1",
"moment-range": "^4.0.1"
},
"dependencies": {
"@nesto-software/moment-holiday": "file:./packages/api",
"@nesto-software/moment-holiday-database-mongoose": "file:./packages/database-mongoose"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/mem": "1.1.2",
"@types/mongoose": "^4.7.43",
"@types/node": "10.9.4",
"@types/node-redis-pubsub": "3.0.0",
"@types/quick-lru": "1.1.0",
"@types/redis": "2.8.6",
"@types/shortid": "0.0.29",
"coveralls": "^3.0.2",
"doctoc": "^1.4.0",
"jest": "^23.6.0",
"jest-create-mock-instance": "^1.1.0",
"lerna": "^3.10.7",
"nodemon": "^1.18.9",
"npm-cli-login": "0.0.10",
"npm-install-peers": "^1.2.1",
"snyk": "^1.122.4",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typedoc": "0.12.0",
"typedoc-plugin-markdown": "^1.1.25",
"typedoc-plugin-monorepo": "^0.1.0",
"typescript": "3.0.1"
},
"engines": {
"npm": ">= 2.x"
},
"scripts": {
"config:peers": "npm-install-peers",
"dev-install": "npm install && npm run config:peers",
"compile": "lerna run compile",
"compile:browser": "lerna run compile:browser",
"clean:top-node-modules": "rm -Rf node_modules",
"clean:packages-node-modules": "lerna clean -y",
"clean:packages-dist-folders": "lerna run clean",
"clean": "npm run clean:packages-dist-folders && npm run clean:packages-node-modules",
"lint": "lerna run lint --loglevel=verbose",
"test": "jest",
"test:debug": "node --inspect=5858 --inspect-brk node_modules/.bin/jest --runInBand --no-cache --config=./jest.config.js --coverage false",
"publish:ci": "lerna publish --canary --no-verify-access --yes --force-publish=*",
"publish": "npm run compile && npm run compile:browser && lerna publish",
"typedoc:create": "typedoc --options typedoc.json .",
"docsify:serve": "docsify serve ./docs",
"toc": "doctoc --github README.md",
"snyk:monitor": "snyk auth $SNYK_TOKEN && snyk monitor && lerna run snyk:monitor",
"snyk:protect": "snyk protect",
"snyk:test": "snyk test && lerna run snyk:test"
}
}