-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.31 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
35
36
37
38
39
40
41
42
43
{
"repository": "https://github.com/tetcoinjs/dev",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"private": true,
"type": "commonjs",
"workspaces": [
"packages/*"
],
"resolutions": {
"typescript": "^4.1.5"
},
"scripts": {
"build": "tetcoin-dev-build-ts",
"build:extra": "(cd packages/dev && copyfiles config/* scripts/* build)",
"build:release": "tetcoin-ci-ghact-build --skip-beta",
"docs": "tetcoin-dev-build-docs",
"lint": "tetcoin-dev-run-lint",
"clean": "tetcoin-dev-clean-build",
"postinstall": "./packages/dev/scripts/tetcoin-dev-yarn-only.cjs",
"test": "yarn build && yarn test:esm && tetcoin-dev-run-test --coverage",
"test:esm": "node ./tester.cjs && node ./tester.mjs"
},
"devDependencies": {
"@tetcoin/dev": "workspace:packages/dev",
"copyfiles": "^2.4.1"
},
"version": "0.61.26",
"exports": {
"./packages/dev/build": {
"default": "./packages/dev/build/index.mjs",
"require": "./packages/dev/build/index.js"
},
"./packages/dev/build/index": {
"default": "./packages/dev/build/index.mjs",
"require": "./packages/dev/build/index.js"
},
"./packages/dev/build/tester": {
"default": "./packages/dev/build/tester.mjs",
"require": "./packages/dev/build/tester.js"
}
}
}