-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1020 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1020 Bytes
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
{
"name": "targetprocess-rest-api",
"version": "1.1.1",
"description": "TypeScript API wrapper for Targetprocess",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"typings": "index.d.ts",
"scripts": {
"prepublishOnly": "npm run build && npm run lint",
"build": "tsc",
"lint": "tslint -c tslint.json index.ts"
},
"keywords": [
"targetprocess",
"target-process",
"api"
],
"author": "NewOrbit Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NewOrbit/targetprocess-rest-api.git"
},
"bugs": {
"url": "https://github.com/NewOrbit/targetprocess-rest-api/issues"
},
"homepage": "https://github.com/NewOrbit/targetprocess-rest-api#readme",
"dependencies": {
"@types/node": "^10.9.4",
"@types/node-fetch": "^2.1.2",
"btoa": "^1.2.1",
"node-fetch": "^2.2.0"
},
"devDependencies": {
"neworbit-tslint-config": "^2.0.2",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
}
}