forked from mattlewis92/calendar-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "calendar-utils",
"version": "0.0.56",
"description": "Utility functions to generate views for calendars",
"main": "dist/umd/calendar-utils.js",
"module": "dist/calendar-utils.js",
"typings": "dist/calendar-utils.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "TZ=Europe/London karma start --single-run",
"test:watch": "TZ=Europe/London karma start --auto-watch",
"start": "npm run test:watch",
"build:umd": "webpack",
"build:esm": "tsc --module es2015",
"build": "npm run build:umd && npm run build:esm",
"clean": "rm -rf dist",
"preversion": "npm test",
"postversion": "npm run build && git push && npm publish && npm run clean",
"codecov": "cat coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/calendar-utils.git"
},
"keywords": [
"calendar",
"utilities"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/calendar-utils/issues"
},
"homepage": "https://github.com/mattlewis92/calendar-utils#readme",
"peerDependencies": {
"date-fns": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.40",
"@types/node": "^8.0.2",
"@types/sinon": "^2.1.2",
"awesome-typescript-loader": "^3.1.2",
"chai": "^4.0.0",
"codecov-lite": "^0.1.3",
"concurrently": "^3.1.0",
"date-fns": "^1.28.1",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"tslint-loader": "^3.3.0",
"typescript": "~2.3.2",
"webpack": "^3.0.0",
"webpack-date-fns-externals": "^1.0.2"
}
}