-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "vobject",
"description": "iCalendar VObject Manipulation in NodeJS",
"version": "0.1.1",
"author": {
"name": "Microsoft Outlook"
},
"keywords": [
"ical",
"icalendar",
"vobject",
"caldav"
],
"main": "index.js",
"homepage": "https://github.com/outlook/vobject-js",
"repository": {
"type": "git",
"url": "https://github.com/outlook/vobject-js.git"
},
"bugs": {
"url": "https://github.com/outlook/vobject-js/issues"
},
"dependencies": {
"moment-timezone": "0.5.10",
"underscore": "1.8.3"
},
"devDependencies": {
"mocha": "3.2.0",
"jshint": "2.9.4",
"nsp": "2.6.2"
},
"scripts": {
"jshint": "./node_modules/.bin/jshint index.js lib/* test/*",
"tests_once": "NODE_ENV=test ./node_modules/.bin/mocha --check-leaks --recursive ./test",
"watch_tests": "NODE_ENV=test ./node_modules/.bin/mocha --check-leaks --watch --colors --growl --recursive ./test",
"outdated": "npm outdated --depth 0 --long",
"vulnerabilities": "./node_modules/.bin/nsp check",
"test": "npm run jshint && npm run tests_once && npm run outdated && npm run vulnerabilities"
}
}