-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "@meetio/merge-meetio-theme",
"version": "1.0.0",
"description": "The most powerful theme for Sublime Merge",
"bugs": {
"url": "https://github.com/meetio-theme/merge-meetio-theme/issues"
},
"license": "MIT",
"scripts": {
"build": "ts-node scripts/index.ts && npm run schemes",
"themes": "ts-node scripts/index.ts",
"schemes": "ts-node scripts/schemes.ts",
"prettier": "prettier --write \"scripts/*.ts?(x)\" \"scripts/**/*.ts?(x)\"",
"lint": "eslint \"scripts/*.ts\" \"scripts/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@meetio/meetio-colors": "^4.0.2",
"@types/node": "^13.9.8",
"@typescript-eslint/eslint-plugin": "2.15.0",
"@typescript-eslint/parser": "2.15.0",
"babel-eslint": "^10.0.3",
"chalk": "^3.0.0",
"eslint": "6.8.0",
"husky": "^4.2.1",
"prettier": "^1.18.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.2"
},
"dependencies": {
"@meetio/scheme-generator": "^1.5.2"
}
}