-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.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
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
{
"name": "crosslead-adapters",
"description": "Common data adapter functionality across web server and background workers",
"version": "0.0.1",
"homepage": "https://github.com/CrossLead/crosslead-adapters",
"bugs": "https://github.com/CrossLead/crosslead-adapters/issues",
"license": "none",
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"author": {
"name": "Christian Yang",
"email": "[email protected]",
"url": "http://crosslead.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/CrossLead/crosslead-adapters"
},
"engines": {
"node": ">=6.9.1",
"npm": ">=3"
},
"keywords": [],
"dependencies": {
"google-auth-library": "0.9.6",
"moment": "2.29.2",
"netsuite-js": "git://github.com/CrossLead/netsuite-js#1b68a15bba2333b928b3110f86be89c857b9d25b",
"node-ews": "git://github.com/CrossLead/node-ews#e36e38fe75fdceccce4e8cac75d7b75b15c09223",
"nodemailer": "4.1.1",
"request-promise": "0.4.2",
"sanitize-html": "1.18.2",
"serialize-error": "^2.1.0",
"moment-recur": "git://github.com/CrossLead/moment-recur#66ca3f74b57b0e8438f79c98df3443fbfcef7309",
"asclient": "git://github.com/CrossLead/node-asclient.git#d77f6452375827e6d201e582156491cfe2078de2",
"lodash": "3.10.1"
},
"peerDependencies": {
"node-uuid": "1.4.3"
},
"devDependencies": {
"@types/node": "6.0.60",
"@types/node-uuid": "0.0.28",
"@types/nodemailer": "^4.6.0",
"@types/request": "0.0.39",
"@types/request-promise": "4.1.33",
"@types/sanitize-html": "1.14.0",
"@types/serialize-error": "2.1.0",
"autodiscover-activesync": "^0.0.1",
"ava": "0.17.0",
"googleapis": "17.1.0",
"tslint": "4.4.2",
"typescript": "2.2.1"
},
"scripts": {
"test": "npm run lint && npm run tsc && ava",
"lint": "tslint \"./lib/**/*.js\" \"./lib/**/*.ts\"",
"build-client": "tsc -p tsconfig.client.json",
"build": "npm run lint && npm run tsc && npm run build-client",
"tsc": "rm -rf dist && tsc",
"watch": "rm -rf dist && npm run build-client && tsc -w"
},
"ava": {
"files": [
"dist/test/**/*.js"
]
}
}