-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "fortepiano",
"version": "1.0.0",
"description": "Playing actual music over fp-ts notes",
"keywords": [
"typescript",
"functional-programming",
"fp-ts",
"testing"
],
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"files": [
"./dist/cjs/**",
"./dist/esm/**"
],
"homepage": "https://github.com/facile-it/fortepiano#readme",
"bugs": {
"url": "https://github.com/facile-it/fortepiano/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facile-it/fortepiano.git"
},
"license": "MIT",
"author": "Alberto Villa <[email protected]>",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"prebuild": "yarn clean",
"build": "yarn prebuild && yarn build:esm && yarn build:cjs",
"build:cjs": "tsc --build ./tsconfig.cjs.json",
"build:esm": "tsc --build ./tsconfig.esm.json",
"clean": "rm -rf ./dist/",
"eslint": "eslint --fix-dry-run ./",
"eslint:fix": "eslint --fix ./",
"prettier": "prettier --check ./",
"prettier:fix": "prettier --write ./",
"prerelease": "yarn build && cp ./package.json ./*.md ./dist/",
"release": "yarn prerelease && npm publish ./dist/",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.3",
"@types/jest": "^26.0.24",
"@types/node": "^22.8.7",
"eslint": "^8.16.0",
"eslint-config-facile": "^0.5.0",
"fp-ts": "^2.0.0",
"io-ts": "^2.0.0",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2",
"typescript": "^4.6.4"
},
"packageManager": "[email protected]"
}