This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.39 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
80
81
82
83
84
{
"name": "taktil",
"description": "Taktil is a lightweight control surface scripting framework for Bitwig Studio that encourages rapid development and community code reuse.",
"version": "0.13.0",
"repository": "taktiljs/taktil",
"author": "Joseph Larson",
"tags": [
"bitwig",
"control surface script",
"framework",
"typescript"
],
"main": "index.js",
"types": "index.d.ts",
"bin": {
"taktil": "./bin/taktil.js"
},
"dependencies": {
"colors": "^1.2.1",
"commander": "^2.15.1",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-change": "^1.0.0",
"gulp-rename": "^1.2.2",
"nunjucks": "^3.1.2",
"prompt-sync": "^4.1.5",
"tslib": "^1.9.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"@types/node": "^9.6.1",
"del": "^3.0.0",
"delete-empty": "^2.0.0",
"gulp-typescript": "^4.0.2",
"jest": "^22.4.3",
"merge2": "^1.2.1",
"prettier": "^1.11.1",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"tslint-config-prettier": "^1.10.0",
"tsutils": "^2.25.0",
"typed-bitwig-api": "^6.0.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.1"
},
"scripts": {
"start": "gulp watch",
"build": "gulp build",
"clean": "gulp clean",
"test": "jest",
"check": "tsc --noEmit",
"lint": "tslint -c tslint.json $(find . ! -path './.git*' ! -path './node_modules*' -path '*.ts') || true",
"format": "prettier --parser typescript --print-width 100 --tab-width 4 --single-quote --trailing-comma=es5 --write $(find . ! -path './.git*' ! -path './node_modules*' -path '*.ts')",
"typedoc": "typedoc --module commonjs --exclude '**/*.spec.ts' --out ./docs/typedoc/ src/taktil.ts",
"preversion": "npm test && npm run build",
"postversion": "npm run clean",
"prepack": "npm test && npm run build",
"postpack": "npm run clean"
},
"engines": {
"node": ">= 6.9.0"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/taktiljs/taktil/issues"
},
"homepage": "https://github.com/taktiljs/taktil#readme",
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}