-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 857 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "periodic-function",
"version": "2.1.2",
"type": "module",
"description": "Periodic waveform functions — phase normalized to [0,1]",
"main": "index.js",
"exports": {
".": "./index.js",
"./*.js": "./*.js",
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"*.js",
"!test.js",
"!generate-plots.js"
],
"scripts": {
"test": "node test.js",
"plots": "node generate-plots.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/periodic-function.git"
},
"keywords": [
"periodic",
"waveform",
"sine",
"sawtooth",
"square",
"triangle",
"fourier",
"wavetable",
"dsp",
"audio"
],
"author": "Dmitry Iv <dfcreative@gmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/audiojs"
}