-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "@exact-realty/privacypass",
"version": "1.0.2",
"description": "Library for working with Private Access Tokens",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"ts:declaration": "tspc --build --emitDeclarationOnly --declarationMap --declaration",
"build": "npm run ts:declaration && node esbuild.mjs",
"test": "nyc mocha",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Exact-Realty/ts-privacypass.git"
},
"author": "Exact Realty Limited",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"typescript": "^5.1.6",
"typescript-transform-paths": "^3.4.6"
},
"keywords": [
"private access tokens",
"private tokens",
"authentication",
"privacypass",
"privacy",
"captcha",
"captcha alternative"
]
}