-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@govtechsg/open-attestation-utils",
"version": "0.0.0-development",
"description": "",
"types": "./dist/types/index.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/types/index.d.ts"
],
"constants/*": [
"./dist/types/constants/*.d.ts"
]
}
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./constants/*": {
"require": "./dist/cjs/constants/*.js",
"import": "./dist/esm/constants/*.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --project ./tsconfig.prod.json",
"build:esm": "tsc --module es2015 --outDir dist/esm --project ./tsconfig.prod.json",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types --project ./tsconfig.prod.json",
"clean": "rm -rf dist/",
"test:ci": "jest --runInBand",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:type": "npx --no-install tsc --noEmit --sourceMap false",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "semantic-release"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt": "^17.4.4",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.3",
"jest-watch-typeahead": "^1.0.0",
"prettier": "^2.8.5",
"semantic-release": "^19.0.0",
"ts-jest": "^27.1.0",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Open-Attestation/open-attestation-utils.git"
},
"prettier": {
"printWidth": 120
}
}