forked from dynamicdan/sn-filesync
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (70 loc) · 2.81 KB
/
package.json
File metadata and controls
76 lines (70 loc) · 2.81 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
69
70
71
72
73
74
75
76
{
"name": "sn-filesync",
"version": "4.2.4",
"description": "Enables out of instance record updates for ServiceNow.",
"main": "bin/app.js",
"bin": {
"filesync": "./bin/app.js"
},
"dependencies": {
"@mishguru/restler": "https://github.com/mishguruorg/restler/tarball/master",
"assert-plus": "^1.0.0",
"chokidar": "^1.0.0",
"colors": "^1.1.0",
"fs-extra": "^0.26.5",
"glob": "^6.0.0",
"minimist": "^1.1.1",
"moment": "^2.10.2",
"node-notifier": "^4.3.1",
"node-sass": "^4.5.3",
"osx-notifier": "^0.2.1",
"winston": "^1.0.0"
},
"engines": {
"node": ">=4.2.6 || >=5.0"
},
"devDependencies": {},
"scripts": {
"setup": "\"run-script\\setup.cmd\"",
"setup-mac": "./run-script/setup.cmd",
"setup-win": "\"run-script\\setup.cmd\"",
"watch-rttmsdev-css": "node-sass src/rttmsdev/style_sheets_source/portal-main.scss -w src/rttmsdev/style_sheets_source --output-style compact -o src/rttmsdev/style_sheets",
"watch-riotintodev-css": "node-sass src/riotintodev/style_sheets_source/portal-main.scss -w src/riotintodev/style_sheets_source --output-style compact -o src/riotintodev/style_sheets",
"watch-rttmsdev": "node bin/app.js --config rttmsdev.config.json",
"watch-riotintodev": "node bin/app.js --config riotintodev.config.json",
"watch-rttmsdev-all": "start npm run watch-rttmsdev-css && watch-rttmsdev",
"watch-riotintodev-all": "start npm run watch-riotintodev-css && watch-riotintodev",
"search-rttmsdev": "\"run-script\\search.cmd rttmsdev\"",
"search-riotintodev": "\"run-script\\search.cmd riotintodev\"",
"search-rttmsdev-win": "\"run-script\\search.cmd rttmsdev\"",
"search-riotintodev-win": "\"run-script\\search.cmd riotintodev\"",
"search-rttmsdev-mac": "./run-script/search.cmd rttmsdev",
"search-riotintodev-mac": "./run-script/search.cmd riotintodev",
"resync-rttmsdev": "node bin/app.js --config rttmsdev.config.json --resync",
"resync-riotintodev": "node bin/app.js --config riotintodev.config.json --resync",
"portal-rttmsdev": "\"run-script\\portal.cmd rttmsdev\"",
"portal-riotintodev": "\"run-script\\portal.cmd riotintodev\"",
"portal-rttmsdev-win": "\"run-script\\portal.cmd rttmsdev\"",
"portal-riotintodev-win": "\"run-script\\portal.cmd riotintodev\"",
"portal-rttmsdev-mac": "./run-script/portal.cmd rttmsdev",
"portal-riotintodev-mac": "./run-script/portal.cmd riotintodev"
},
"repository": {
"type": "git",
"url": "https://github.com/dynamicdan/filesync"
},
"keywords": [
"servicenow",
"sync",
"files",
"updates",
"editing",
"instance"
],
"author": "DynamicDan",
"license": "MIT",
"bugs": {
"url": "https://github.com/dynamicdan/filesync/issues"
},
"homepage": "https://github.com/dynamicdan/filesync"
}