-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
{
"name": "@voximplant/tiler",
"version": "1.6.0",
"license": "Apache-2.0",
"main": "dist/index.cjs.min.js",
"module": "dist/index.esm.min.js",
"unpkg": "dist/index.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --emitDeclarationOnly --skipLibCheck -d && rollup --config",
"dev": "rollup --config --watch",
"lint": "eslint --fix",
"test": "cross-env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha -r ts-node/register __tests__/**/*.spec.ts",
"commitlint": "commitlint",
"spellcheck": "cspell \"src/**/*\"",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@rollup/plugin-typescript": "8.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/gitlab": "12.0.5",
"@types/chai": "4.2.22",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "8.2.3",
"@types/node": "14.17.28",
"@types/rewire": "2.5.28",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"cspell": "5.12.3",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"mocha": "8.4.0",
"prettier": "2.4.1",
"rewire": "5.0.0",
"rollup": "2.58.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-dts": "3.0.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-size-snapshot": "0.12.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "4.2.2",
"semantic-release": "21.0.7",
"ts-node": "9.1.1",
"tslib": "2.3.1",
"typescript": "4.4.4",
"typescript-transform-paths": "3.3.1"
},
"husky": {
"hooks": {
"commit-msg": "yarn commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn build && lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn lint"
],
"__tests__/**/*.ts": [
"yarn lint"
]
},
"files": [
"dist/**",
"NOTICE"
],
"packageManager": "yarn@3.2.0"
}