-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "cromatica",
"version": "0.3.0",
"description": "A small library that defines a color scheme for the 12 musical notes in the chromatic scale.",
"main": "dist/index.esm.js",
"type": "module",
"typings": "dist/index.d.ts",
"scripts": {
"build": "node build.js",
"clean": "rm dist/*",
"release": "release-it",
"test": "ava -v"
},
"files": [
"dist"
],
"keywords": [
"chromatic",
"scale",
"color",
"color",
"scheme",
"music",
"musical",
"note",
"scale"
],
"repository": {
"type": "git",
"url": "https://github.com/yaph/cromatica.git"
},
"homepage": "https://github.com/yaph/cromatica",
"author": "Ramiro Gómez (https://ramiro.org)",
"license": "MIT",
"devDependencies": {
"ava": "^3.15.0",
"esbuild": "^0.14.1",
"release-it": "^14.11.8",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm",
"--trace-warnings"
]
}
}