forked from utily/cryptly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "cryptly",
"version": "0.1.12",
"description": "Fullstack encryption library.",
"author": "PayFunc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/payfunc/cryptly"
},
"bugs": {
"url": "https://github.com/payfunc/cryptly/issues"
},
"homepage": "https://payfunc.com/open-source/cryptly",
"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"
}
},
"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' .",
"build": "tsc -p .",
"lint": "eslint '**/*.{js,ts,tsx}'",
"fix": "eslint '**/*.{js,ts,tsx}' --fix",
"test": "jest",
"test:watch": "watch jest",
"prepare": "npm run build",
"clean": "rm -rf dist node_modules coverage"
},
"optionalDependencies": {
"node-webcrypto-ossl": "^2.1.2"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.0",
"eslint": "^7.11.0",
"eslint-config-standardize": "^0.7.1",
"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.4.1",
"typescript": "^4.0.3",
"watch": "^1.0.2"
}
}