-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "jupiterate",
"version": "0.0.3",
"description": "A tree-shakable iteration library.",
"main": "dst/cjs/index.js",
"module": "dst/esm/index.js",
"types": "dst/esm/index.d.ts",
"repository": "https://github.com/lazarljubenovic/jupiterate",
"author": "Lazar Ljubenović <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dst"
],
"scripts": {
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "yarn build:cjs && yarn build:esm",
"prepublishOnly": "yarn test:c && yarn build",
"test": "ts-mocha --type-check -p tsconfig.spec.json tests/**/*.spec.ts",
"test:w": "ts-mocha --type-check -p tsconfig.spec.json tests/**/*.spec.ts -w --watch-extensions ts",
"test:c": "nyc --reporter=html --reporter=text --reporter=text-summary yarn test"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.10",
"chai": "^4.3.6",
"conditional-type-checks": "^1.0.4",
"mocha": "^10.2.0",
"nyc": "^15.0.1",
"ts-mocha": "^10.0.0",
"typescript": "5.2.2"
}
}