-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "playback",
"version": "0.2.0",
"description": "Chord player that can load different styles",
"main": "dist/playback.cjs",
"type": "module",
"exports": {
"import": "dist/playback.node.mjs",
"require": "dist/playback.cjs"
},
"browser": "dist/playback.web.js",
"types": "types/playback.d.ts",
"scripts": {
"playground": "npx http-server -o test/index.html",
"lint": "npx eslint src/**/*.ts --fix",
"link": "npm link ~/git/notochord-song",
"test": "TS_NODE_IGNORE=\"/node_modules|(ts$)/\" npx ts-mocha -p test/tsconfig.json test/*.ts",
"build-grammar": "npx nearleyc src/parser/grammar.ne -o src/parser/grammar.js",
"build": "npx rollup -c; # npm run build-declarations",
"build-declarations": "npx tsc -d --emitDeclarationOnly --declarationDir types/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notochord/playback.git"
},
"author": "Jacob Bloom",
"license": "ISC",
"bugs": {
"url": "https://github.com/notochord/playback/issues"
},
"homepage": "https://github.com/notochord/playback#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"http-server": "^0.12.3",
"jsdoc": "^3.6.4",
"mocha": "^6.2.3",
"nearley": "2.13.0",
"rollup": "^1.32.1",
"rollup-plugin-banner": "^0.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"notochord-song": "git+https://github.com/notochord/notochord-song.git#3.0.0"
},
"dependencies": {
"@tonaljs/tonal": "^3.7.3"
}
}