forked from sebbo2002/ical-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 2.32 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
{
"name": "ical-generator",
"version": "1.0.0",
"description": "ical-generator is a small piece of code which generates ical calendar files",
"author": "Sebastian Pekarek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "http://github.com/sebbo2002/ical-generator/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"moment-timezone": "^0.5.26"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^6.5.1",
"jquery": "^3.4.1",
"jshint": "^2.10.2",
"mocha": "^6.2.1",
"mochawesome": "^4.1.0",
"moment": "^2.24.0",
"npm-check": "^5.9.0",
"nyc": "^14.1.1",
"portfinder": "^1.0.24",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"peerDependencies": {
"@types/node": ">= 8.0.0"
},
"scripts": {
"all": "npm run check && npm run tests && npm run build",
"check": "npm run check:eslint && npm run check:npm",
"check:eslint": "eslint ./examples ./src ./test/*.js",
"check:quick": "npm run check:eslint",
"check:npm": "npm-check -s -p",
"tests": "npm run test && npm run coverage",
"test": "mocha -c --reporter mochawesome --reporter-options reportDir=test-result/test,reportFilename=report,json=false ./test/*.js",
"coverage": "nyc --reporter=html --reporter=text --report-dir ./test-result/coverage --check-coverage mocha -c ./test/*.js",
"browser-test": "webpack && mkdir -p ./test-result/browser-test && cp ./test/html/index.html ./test-result/browser-test && cp ./node_modules/mocha/mocha.css ./test-result/browser-test && cp ./node_modules/jquery/dist/jquery.min.js ./test-result/browser-test && cp ./node_modules/mocha/mocha.js ./test-result/browser-test && cp ./node_modules/moment/moment.js ./test-result/browser-test && open ./test-result/browser-test/index.html",
"bump": "jq -M \".version=\\\"$CI_COMMIT_TAG\\\"\" package.json|sponge package.json",
"build": "babel src --out-dir dist"
},
"preferGlobal": false,
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "http://github.com/sebbo2002/ical-generator.git"
},
"typings": "index.d.ts",
"runkitExampleFilename": "examples/example-runkit.js"
}