-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "@workfront/cookie",
"version": "4.0.0",
"description": "Extracts values from workfront cookies",
"main": "dist/workfront-cookie.js",
"module": "dist/workfront-cookie.esm.js",
"sideEffects": false,
"files": [
"dist",
"typings"
],
"types": "./typings/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:bundles": "rollup --config rollup.config.js",
"build:typings": "tsc --declaration --emitDeclarationOnly --noEmitOnError --declarationDir typings",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,css,md,yml}\"",
"test:typecheck": "tsc --noEmit",
"test:sources": "jest --coverage",
"test:sources:watch": "jest --watch",
"test": "run-p test:*",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workfront/workfront-cookie.git"
},
"keywords": [
"Workfront",
"AtTask",
"session",
"cookie"
],
"author": "Workfront",
"contributors": [
"Hovhannes Babayan <bhovhannes@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Workfront/workfront-cookie/issues"
},
"homepage": "https://github.com/Workfront/workfront-cookie#readme",
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@evilmartians/lefthook": "1.11.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/jest": "29.5.14",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"npm-run-all2": "7.0.2",
"prettier": "3.5.3",
"rollup": "4.37.0",
"ts-jest": "29.3.0",
"tslib": "2.8.1",
"typescript": "5.8.2"
}
}