-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "sketch-app-types",
"description": "TypeScript declaration files for Sketch App",
"version": "0.1.1",
"engines": {
"sketch": ">=49.0"
},
"files": [
"index.d.ts",
"types/*.d.ts"
],
"skpm": {
"name": "Generate Sketch.d.ts",
"manifest": "src/manifest.json",
"main": "Generate Sketch.d.ts.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"dev": "skpm-build --watch",
"start": "skpm-build --watch --run",
"build": "skpm-build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/*.ts": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^8.2.0",
"@skpm/builder": "^0.7.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"commitlint": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-o2team": "^0.1.6",
"eslint-config-sketch": "^0.2.4",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"terser-webpack-plugin": "^2.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2"
},
"author": "koppthe <[email protected]>"
}