-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.67 KB
/
package.json
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": "3.4.5",
"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",
"prettier": "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 <[email protected]>"
],
"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.5.0",
"@commitlint/config-conventional": "19.5.0",
"@evilmartians/lefthook": "1.7.16",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "12.1.0",
"@types/jest": "29.5.13",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"npm-run-all2": "6.2.3",
"prettier": "3.3.3",
"rollup": "4.22.4",
"ts-jest": "29.2.5",
"tslib": "2.7.0",
"typescript": "5.5.4"
}
}