-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.73 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
67
{
"name": "note-art",
"version": "4.0.1",
"author": "Sean Dvir Seanitzel <[email protected]>",
"license": "MIT",
"description": "Music programming package",
"private": true,
"homepage": "https://github.com/Seanitzel/Note-Art/tree/master",
"repository": {
"type": "git",
"url": "https://github.com/Seanitzel/Note-Art.git"
},
"type": "module",
"exports": "./lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"README.md",
"LICENSE.md",
"src",
"docs",
"lib"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"build": "rm -rf lib && npm run ts:build",
"ts:build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "npm run ts:build && cross-env mocha -r ts-node/register -r esm \"test/**/*.spec.js\"",
"coverage": "nyc npm run test",
"report": "nyc report --root coverage --format html",
"docs": "typedoc",
"docs:dev": "cd docs && server",
"prepublish": "npm run ts:build",
"deploy": "npm publish"
},
"keywords": [
"music",
"art",
"note",
"chord",
"key",
"scale",
"rhythm"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-webpack-plugin": "^3.0.1",
"esm": "^3.2.25",
"istanbul": "^0.4.5",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"typedoc": "^0.21.9"
}
}