-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.83 KB
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
{
"name": "uxsyncnow",
"version": "1.0.1",
"description": "UXstorm's ServiceNow file synchronizer / development tool",
"main": "uxsyncnow.js",
"scripts": {
"test": "karma start",
"build": "echo 'Installing' && tsc && (echo '#!/usr/bin/env node' >dist/uxsyncnowcli && cat dist/uxsyncnow.js >> dist/uxsyncnowcli)"
},
"bin": {
"uxsyncnow": "dist/uxsyncnowcli"
},
"keywords": [
"servicenow",
"uxstorm",
"filesync",
"sync"
],
"bugs": {
"url": "https://github.com/ReedOwens/UXsyncNow/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ReedOwens/UXsyncNow.git"
},
"author": "Reed Owens <reed.owens@UXstorm.com> (http://uxstorm.com)",
"license": "AGPL-3.0+",
"dependencies": {
"bluebird": "^3.5.1",
"bottleneck": "^1.16.0",
"chokidar": "^2.0.2",
"crypto-js": "^3.1.9-1",
"jsonfile": "^4.0.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"node-notifier": "^5.2.1",
"unirest": "^0.6.0",
"vorpal": "^1.12.0",
"vorpal-log": "^1.1.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.16",
"@types/chokidar": "^1.7.5",
"@types/crypto-js": "^3.1.39",
"@types/jasmine": "^2.8.2",
"@types/jsonfile": "^4.0.0",
"@types/lodash": "^4.14.106",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.1",
"@types/node": "^8.0.53",
"@types/node-notifier": "^0.0.28",
"grunt": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.22",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"jasmine-node": "^1.14.5",
"karma": "^1.7.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.8",
"phantomjs": "^2.1.7",
"typescript": "^2.3.2",
"typings": "^2.1.1"
}
}