-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.24 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.24 KB
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
{
"name": "@helios-lang/type-utils",
"version": "0.3.0",
"description": "Global utility types",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite && pnpm run test:integ",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"lockfile:sync": "pnpm install --ignore-workspace",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite && pnpm run test:integ",
"test:integ": "pnpm --prefix ./test/all-pure run test",
"test:pretty": "prettier . --check",
"test:suite": "node --test --experimental-test-coverage",
"test:types": "pnpm run build:types",
"testing": "node --test --watch",
"testing:debug": "node --inspect-brk --test --watch"
},
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/node": "^20.14.0",
"prettier": "^3.3.3",
"typescript": "^5.7.2"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
}