-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.89 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
68
69
70
71
72
{
"name": "note-art",
"version": "4.1.2",
"author": "Sean Dvir Seanitzel <[email protected]>",
"license": "MIT",
"description": "Music programming package",
"private": false,
"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",
"build:bundle": "webpack",
"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",
"docs": "ts-docs src/index.ts",
"docs:dev": "cd docs && server",
"prepublish": "npm run ts:build",
"deploy": "npm publish"
},
"keywords": [
"music",
"art",
"note",
"chord",
"key",
"scale",
"rhythm"
],
"devDependencies": {
"@babel/register": "7.22.5",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@ts-docs/default-docs-structure": "0.4.4",
"@ts-docs/ts-docs": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-webpack-plugin": "^4.0.1",
"esm": "^3.2.25",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.3",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}