forked from TradeTrust/tradetrust-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "@govtechsg/tradetrust-utils",
"version": "0.1.0",
"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": "NODE_OPTIONS=--max-old-space-size=2048 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": {
"@govtechsg/oa-verify": "^8.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@commitlint/prompt": "^17.6.5",
"@ls-age/commitlint-circle": "^1.0.0",
"@types/gtag.js": "0.0.12",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.8.8",
"semantic-release": "^18.0.1",
"ts-jest": "^29.1.0",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/TradeTrust/tradetrust-utils.git"
}
}