-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "@workfront/objcodes",
"version": "2.5.2",
"description": "Definitions for all constants which can be used to interact with Workfront API",
"main": "dist/umd/objcodes.js",
"module": "dist/objcodes.js",
"jsnext:main": "dist/objcodes.js",
"types": "dist/objcodes.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"devDependencies": {
"typescript": "5.9.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist/ && tsc --module umd --outDir dist/umd/ src/*.ts && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workfront/workfront-objcodes.git"
},
"keywords": [
"Workfront",
"ObjCode",
"object",
"code",
"AtTask",
"API"
],
"author": "Workfront",
"contributors": [
"Hovhannes Babayan <bhovhannes@gmail.com>",
"Wellington Cordeiro <wellington@wellingtoncordeiro.com>"
],
"license": "Apache-2.0",
"engines": {
"node": ">=8"
},
"bugs": {
"url": "https://github.com/Workfront/workfront-objcodes/issues"
},
"homepage": "https://github.com/Workfront/workfront-objcodes"
}