generated from shortercode/ts-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.03 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
{
"version": "0.2.9",
"name": "@metrichor/data-rambler",
"main": "cjs/index.js",
"module": "mjs/index.mjs",
"types": "mjs/index.d.ts",
"scripts": {
"test": "jest --verbose --coverage",
"typecheck": "tsc --noEmit --watch",
"build": "rollup -c && cp ./package.json ./dist/package.json && cp ./README.md ./dist/README.md && cp ./playground.html ./dist/playground.html",
"lint": "eslint src/*"
},
"homepage": "https://github.com/nanoporetech/data-rambler",
"repository": {
"type": "git",
"url": "https://github.com/nanoporetech/data-rambler.git"
},
"author": "Iain Shorter <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"jest": "^29.4.2",
"rollup": "^3.15.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"ts-runtime-typecheck": "^2.6.0"
}
}