-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.63 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.63 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
77
78
79
80
81
82
83
84
85
86
{
"name": "@workfront/workfront-api",
"version": "9.0.1",
"description": "A Workfront API for the Node.js and the Web",
"main": "dist/workfront-api.cjs.js",
"module": "dist/workfront-api.es.js",
"files": [
"dist",
"typings"
],
"sideEffects": false,
"typings": "typings/node.d.ts",
"dependencies": {
"@types/node": "^20.0.0",
"form-data": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"tslib": "^2.5.3",
"@workfront/api-constants": "^3.0.0"
},
"devDependencies": {
"@evilmartians/lefthook": "1.7.17",
"@rollup/plugin-commonjs": "26.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.0",
"@types/mocha": "9.1.1",
"conventional-changelog-cli": "5.0.0",
"fetch-mock": "10.1.1",
"http-server": "14.1.1",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-mocha": "2.0.1",
"karma-sauce-launcher": "4.3.6",
"karma-typescript": "5.5.4",
"karma-typescript-es6-transform": "5.5.4",
"mocha": "9.2.2",
"npm-run-all2": "6.2.3",
"prettier": "3.3.3",
"rollup": "3.29.5",
"should": "13.2.3",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.26.7",
"typescript": "5.5.4"
},
"scripts": {
"prettier": "prettier --write **/*.{ts,js,css,md}",
"test": "run-s test:*",
"test:karma": "karma start karma.conf.js",
"test:mocha": "mocha -r ts-node/register/transpile-only test/*.spec.ts",
"e2e": "CI=true mocha --no-timeouts test/e2e.test.js",
"debug": "npm run test:karma -- --auto-watch --browsers Chrome --no-single-run",
"build": "rollup -c && tsc --emitDeclarationOnly -p ./tsconfig.json -d --declarationDir ./typings",
"docs": "rm -rf ./docs/ && typedoc && touch ./docs/.nojekyll",
"prepublishOnly": "npm run build",
"version": "conventional-changelog -i CHANGELOG.md -s && npm run docs && git add docs CHANGELOG.md",
"start": "http-server -a localhost -p 8000 -o --cors -c-1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workfront/workfront-api.git"
},
"keywords": [
"API",
"AtTask",
"Workfront",
"TypeScript",
"rollup"
],
"author": "Workfront",
"contributors": [
"Hovhannes Babayan <bhovhannes@gmail.com>",
"Sassoun Derderian <citizen.sas@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Workfront/workfront-api/issues"
},
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/Workfront/workfront-api"
}