forked from FocusriteGroup/juce-end-to-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "@focusritegroup/juce-end-to-end",
"version": "0.0.19",
"description": "End-to-end testing library for Focusrite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"source"
],
"directories": {
"example": "example"
},
"scripts": {
"generate": "npx ts-node scripts/generate.ts",
"build-cpp": "npx ts-node scripts/build-cpp-library.ts",
"test-cpp": "cd cmake-build && ctest -j 8 -C Release --output-on-failure --output-junit unit-tests.xml",
"lint": "eslint . --ext .ts",
"build": "tsc",
"test": "jest ./tests/**",
"test-example": "jest ./example/tests/**"
},
"repository": "git://github.com/FocusriteGroup/juce-end-to-end.git",
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FocusriteGroup/juce-end-to-end/issues"
},
"homepage": "https://github.com/FocusriteGroup/juce-end-to-end#readme",
"dependencies": {
"minimatch": "^5.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.16.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.8.0",
"@types/tar": "^6.1.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.1.0",
"babel-jest": "^29.0.3",
"eslint": "^8.6.0",
"glob": "^9.1.0",
"jest": "^29.3.1",
"tar": "^6.1.11",
"ts-node": "^10.4.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">14"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": false,
"quoteProps": "consistent",
"arrowParens": "always",
"printWidth": 80
}
}