-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "speed-to-percentage",
"version": "1.2.1",
"description": "calculate percentage from playback speed",
"keywords": [
"audio",
"pitch",
"speed",
"percentage"
],
"repository": {
"type": "git",
"url": "https://github.com/bamdadsabbagh/speed-to-percentage.git"
},
"license": "MIT",
"author": {
"name": "Bamdad Sabbagh",
"email": "hello@bamdadsabbagh.com",
"url": "https://bamdadsabbagh.com"
},
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"files": [
"src"
],
"scripts": {
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "yarn jest",
"test:coverage": "yarn jest --coverage",
"package:reinstall": "rimraf node_modules && yarn",
"package:sort": "npx sort-package-json"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/"
},
"devDependencies": {
"@bamdadsabbagh/eslint-config": "^2.0.13",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"jest": "^27.4.7",
"rimraf": "^3.0.2"
}
}