-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.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
{
"name": "@rocketry/core",
"version": "0.0.0",
"private": true,
"description": "A high-level, feature-filled interface for Novation's Launchpad series.",
"keywords": [
"ableton",
"api",
"launchpad",
"mark 2",
"mark ii",
"midi",
"mini",
"mk2",
"mkii",
"novation",
"pro"
],
"homepage": "https://github.com/rocketryjs/rocketry#readme",
"bugs": {
"url": "https://github.com/rocketryjs/rocketry/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rocketryjs/rocketry.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./": "./lib/"
},
"types": "./lib/index.d.ts",
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint ./"
},
"dependencies": {
"bind-deep": "^2.2.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-plugin-evelyn": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^0.1.1",
"eslint-plugin-unicorn": "^25.0.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=8.0.0"
}
}