-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.34 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
{
"name": "ics-js",
"version": "0.10.2",
"description": "Create ICS files in ES6",
"main": "dist/ics-js.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && mocha",
"build": "webpack --progress --colors",
"prepublish": "npm run test && npm run build",
"doc": "esdoc -c esdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angeloashmore/ics-js.git"
},
"keywords": [
"ics",
"calendar",
"ical"
],
"author": "Angelo Ashmore",
"license": "ISC",
"bugs": {
"url": "https://github.com/angeloashmore/ics-js/issues"
},
"homepage": "https://github.com/angeloashmore/ics-js#readme",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"left-pad": "^1.0.1",
"mocha": "^2.4.5",
"standard": "^6.0.8",
"webpack": "^1.12.14"
},
"dependencies": {
"detect-node": "^2.0.3",
"es6-error": "^1.0.0",
"lodash.difference": "^4.3.0",
"simple-guid": "0.0.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"standard": {
"globals": [
"Blob"
],
"ignore": [
"/dist/"
],
"parser": "babel-eslint"
}
}