-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 732 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 732 Bytes
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
{
"version": "0.1.0",
"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",
"lint": "eslint src/*"
},
"author": "Iain Shorter <iainshorter@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}