forked from utily/authly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.99 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.99 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
{
"name": "authly",
"version": "0.2.6",
"description": "Tokenized authentication using JSON Web Tokens with support for encrypted token properties.",
"author": "PayFunc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/payfunc/authly"
},
"bugs": {
"url": "https://github.com/payfunc/authly/issues"
},
"homepage": "https://payfunc.com/open-source/authly",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"browser": {
"./dist/crypto": "./dist/crypto.browser"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!cryptly/.*)"
],
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{js,ts,tsx}'",
"fix": "eslint '**/*.{js,ts,tsx}' --fix",
"build": "tsc -p .",
"pretest": "npm run build",
"test": "jest",
"test:watch": "watch jest",
"prepare": "npm run build",
"clean": "rm -rf dist node_modules coverage"
},
"dependencies": {
"cryptly": "^0.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.0.1",
"eslint": "^7.7.0",
"eslint-plugin-prettierx": "github:nilssonemma/eslint-plugin-prettierx#master",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26",
"prettierx": "github:simonmika/prettierx#newline-before-clause",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5",
"watch": "^1.0.2"
}
}