-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
{
"name": "btt",
"version": "3.5.2",
"description": "Manage your BetterTouchTool in JavaScript, easly.",
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"_precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"watch": "webpack -d --watch --config webpack/dev.config.js",
"build": "webpack --devtool eval-cheap-module-source-map -p --config webpack/prod.config.js && npm run docs:build",
"docs:dev": "vuepress dev docs",
"docs:build": "npm run inject; vuepress build docs",
"inject": "browserify ./scripts/btt-window-inject.js > ./docs/.vuepress/public/btt.js",
"test": "jest",
"lint": "tslint --project tsconfig.json",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"author": "Wojciech Połowniak",
"license": "MIT",
"dependencies": {
"@types/uuid": "^3.4.3",
"child_process": "^1.0.2",
"detect-node": "^2.0.3",
"lodash": ">=4.17.11",
"node-fetch-polyfill": "^2.0.6",
"performance-now": "^2.1.0",
"prettier-webpack-plugin": "^1.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/jest": "^23.1.4",
"@types/mocha": "^5.2.4",
"@types/node": "^10.3.4",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"jest": "^29.3.1",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.1",
"prettier-tslint": "^0.4.2",
"ts-jest": "^23.0.0",
"ts-loader": "^4.4.1",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typedoc": "^0.11.1",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^2.9.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"vuepress": "^1.9.7",
"webpack": "^4.27.1",
"webpack-cli": "^3.0.3",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageDirectory": "./coverage"
},
"pre-commit": [
"_precommit-msg",
"test",
"lint"
]
}