-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "sketchlint",
"version": "1.0.0-alpha.6",
"description": "Pluggable linting utility for Sketch.",
"repository": {
"type": "git",
"url": "https://github.com/kvendrik/sketchlint.git"
},
"bugs": {
"url": "https://github.com/kvendrik/sketchlint/issues"
},
"keywords": [
"sketch",
"lint"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": "cli/sketchlint",
"scripts": {
"lint": "yarn lint:ts && yarn lint:tslint && yarn lint:eslint",
"lint:ts": "tsc --noEmit --pretty",
"lint:eslint": "eslint src --ext .ts",
"lint:tslint": "tslint -c tslint.json --project tsconfig.json 'src/**/*.ts'",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"ci": "yarn lint && yarn test:coveralls && yarn test",
"build": "tsc",
"clean": "rm -rf build"
},
"author": "Koen Vendrik <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.2.1",
"@types/node": "^10.5.2",
"@types/shelljs": "^0.8.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"shelljs": "^0.8.2",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
},
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"sketch2json": "^0.1.2"
}
}