-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.85 KB
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
{
"name": "@figma-plugin/helpers",
"version": "0.15.2",
"description": "A collection of helper functions useful when creating Figma plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx babel src --extensions \".ts\" --out-dir dist && tsc --build tsconfig.build.json",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"test": "jest",
"docs": "node generate-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/figma-plugin-helper-functions/figma-plugin-helpers.git"
},
"keywords": [
"figma",
"plugins",
"helper",
"functions"
],
"author": "Figma Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/figma-plugin-helper-functions/figma-plugin-helpers/issues"
},
"homepage": "https://github.com/figma-plugin-helper-functions/figma-plugin-helpers#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.9.0",
"@figma/plugin-typings": "^1.15.0",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-jest": "^25.4.0",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"figma-api-stub": "0.0.32",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.2.2",
"prettier": "^1.19.1",
"typedoc": "^0.17.4",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"lodash": "^4.17.15",
"matrix-inverse": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}