-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "cheminfo-tools-test",
"version": "8.0.4",
"description": "Dummy project - used as a starting point for new libraries",
"keywords": [
"test",
"project"
],
"author": "Michaël Zasso",
"repository": "cheminfo/test-package",
"bugs": {
"url": "https://github.com/cheminfo/test-package/issues"
},
"homepage": "https://github.com/cheminfo/test-package",
"license": "MIT",
"files": [
"lib",
"lib-esm",
"src"
],
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"exports": {
"require": "./lib/index.js",
"default": "./lib-esm/index.js"
},
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest run --coverage",
"build": "cheminfo-build",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.5",
"cheminfo-build": "^1.2.0",
"eslint-config-cheminfo-typescript": "^17.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}