generated from CodrJS/ts-npm-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "@codrjs/config",
"version": "1.0.7",
"description": "Codr configuration, unified",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"repository": "[email protected]:CodrJS/config.git",
"author": "Dylan Bulmer <[email protected]>",
"license": "MIT",
"type": "module",
"private": false,
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./esm/index.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"test": "jest --config jest.config.json --passWithNoTests --coverage",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "yarn build:cjs && yarn build:esm && ./bin/post-build.sh",
"clean": "rm -rf ./dist/*",
"format": "prettier --write \"src/**/*.(ts|js)\"",
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore --ext .ts src",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"convert": "taplo get -f src/examples/project.toml -o json > src/examples/project.json"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.22",
"@swc/jest": "^0.2.24",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.21",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}