-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.47 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
73
74
75
76
77
78
79
{
"name": "note-art",
"version": "3.0.1",
"description": "Music programming package",
"homepage": "https://github.com/Seanitzel/Note-Art/tree/master",
"repository": {
"type": "git",
"url": "https://github.com/Seanitzel/Note-Art.git"
},
"main": "dist/note-art.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"README.md",
"LICENSE.md",
"src",
"docs",
"dist"
],
"scripts": {
"dev": "webpack --mode development",
"build": "rm -fr dist/* && npm run ts:build && npm run webpack:build",
"prepare": "",
"webpack:build": "webpack --mode production",
"ts:build": "tsc -p tsconfig.json",
"ts:watch": "tsc --watch",
"test": "cross-env mocha -r ts-node/register -r esm \"test/**/*.spec.js\"",
"coverage": "cross-env NODE_ENV=test nyc npm run test -- --reporter landing --cache",
"report": "nyc report --root coverage --format html",
"docs": "typedoc",
"docs:dev": "cd docs && server",
"prepublish": "npm run ts:build",
"predeploy": "npm version patch",
"deploy": "npm publish"
},
"keywords": [
"music",
"art",
"note",
"chord",
"key",
"scale",
"rhythm"
],
"author": "Sean Dvir Seanitzel <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.14",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4.3.4",
"core-js": "^3.10.1",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"esm": "^3.2.25",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.6.0",
"source-map-loader": "^1.1.3",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"@istanbuljs/nyc-config-typescript": "^1.0.1"
}
}