-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "euclidean-rhythms",
"version": "0.0.0-semantically-released",
"description": "Calculates the patterns based on the euclidean/bjorklund's algorithm",
"main": "dist/index.js",
"engines": {
"node": "=16"
},
"scripts": {
"lint": "eslint src",
"test:watch": "npm t -- --watch",
"test": "jest src/*.test.ts --coverage",
"prebuild": "rimraf dist",
"build:main": "tsup src/index.ts --format esm --sourcemap --dts",
"build:cjs.iife.min": "tsup src/index.ts --format cjs,iife --sourcemap --minify",
"build": "npm-run-all lint test --parallel build:*",
"precommit": "npm-run-all test",
"commit": "git-cz ",
"semantic-release": "semantic-release --branches master"
},
"repository": {
"type": "git",
"url": "https://github.com/mkontogiannis/euclidean-rhythms.git"
},
"keywords": [
"euclidean",
"rhythms",
"euclid",
"bjorklund",
"Godfried Toussaint"
],
"files": [
"dist",
"README.md"
],
"author": "Michael Kontogiannis <mkontogiannis@protonmail.com> (http://m.kontogiannis.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkontogiannis/euclidean-rhythms/issues"
},
"homepage": "https://github.com/mkontogiannis/euclidean-rhythms#readme",
"devDependencies": {
"@types/jest": "29.0.3",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"commitizen": "3.0.4",
"cz-conventional-changelog": "2.1.0",
"eslint": "8.24.0",
"husky": "1.1.2",
"jest": "29.0.3",
"npm-run-all": "4.1.3",
"rimraf": "2.6.2",
"semantic-release": "15.10.5",
"ts-jest": "29.0.2",
"tsup": "6.2.3",
"typescript": "4.8.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}