-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.79 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": "@iden3/js-crypto",
"version": "1.1.0",
"description": "Crypto primitives for iden3",
"source": "./src/index.ts",
"exports": {
".": {
"node": {
"import": "./dist/node/esm/index.js",
"require": "./dist/node/cjs/index.js"
},
"browser": "./dist/browser/esm/index.js",
"umd": "./dist/browser/umd/index.js",
"types": "./dist/types/index.d.ts"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:node && npm run build:browser",
"build:browser": "node ./scripts/browser.js",
"build:node": "npm run build:tsc && npm run build:esm",
"build:tsc": "tsc --module commonjs",
"build:esm": "tsc -p config/tsconfig.esm.json",
"clean": "rimraf ./dist",
"test": "jest",
"lint": "eslint --fix --ext .js,.ts src/** tests/**",
"lint:check": "eslint --ext .js,.ts src/** tests/**",
"format": "prettier --config .prettierrc './**/*.ts' --write",
"format:check": "prettier --config .prettierrc './**/*.ts' --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iden3/js-crypto.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/js-crypto/issues"
},
"homepage": "https://github.com/iden3/js-crypto#readme",
"devDependencies": {
"@cspell/eslint-plugin": "^8.14.2",
"@iden3/eslint-config": "https://github.com/iden3/eslint-config",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"esbuild": "^0.19.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}