-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@workfront/api-constants",
"version": "3.0.0",
"description": "Definitions for all constants which can be used to interact with Workfront API",
"main": "dist/umd/constants.js",
"types": "./dist/constants.d.ts",
"module": "dist/constants.js",
"jsnext:main": "dist/constants.js",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"typescript": "5.9.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"build:umd": "tsc --removeComments --module umd --outDir dist/umd/ src/*.ts",
"build:es": "tsc --module es6 --target es5 --declaration --outDir dist/ src/*.ts",
"build": "npm run build:umd && npm run build:es",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workfront/workfront-api-constants.git"
},
"keywords": [
"Workfront",
"Constants",
"AtTask",
"API"
],
"author": "Workfront",
"contributors": [
"Hovhannes Babayan <bhovhannes@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Workfront/workfront-api-constants/issues"
},
"homepage": "https://github.com/Workfront/workfront-api-constants"
}