-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
107 lines (107 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sketch-constructor",
"version": "0.0.0-development",
"description": "Read/write/manipulate Sketch files in Node without Sketch plugins!",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"typings": "index.d.ts",
"files": [
"models",
"utils",
"index.js",
"index.d.ts",
"LICENSE",
"README.md",
"NOTICE"
],
"scripts": {
"lint": "eslint index.js models/**/*.js utils/**/*.js",
"type-check": "tsc --noEmit",
"test": "npm run lint && npm run type-check && jest --runInBand --no-cache",
"commit": "git-cz",
"preversion": "npm test && npm run docs:build",
"release": "git add . && standard-version -a",
"prettier:fix": "prettier --write index.js \"models/**/*.js\" \"utils/**/*.js\"",
"prettier:check": "prettier --list-different index.js \"models/**/*.js\" \"utils/**/*.js\"",
"docs:build": "node ./scripts/generateDocs.js",
"docs:serve": "docsify serve ./docs",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/__tests__/__helpers.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/amzn/sketch-constructor.git"
},
"keywords": [
"sketch",
"node"
],
"author": "Amazon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/amzn/sketch-constructor/issues"
},
"contributors": [
"Danny Banks <[email protected]>"
],
"homepage": "https://github.com/amzn/sketch-constructor#readme",
"dependencies": {
"@types/node": "*",
"@types/tinycolor2": "^1.4.2",
"fs-extra": "^9.0.1",
"json-stream-stringify": "^2.0.2",
"jszip": "^3.4.0",
"tinycolor2": "^1.4.1",
"uuid-v4": "^0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^10.0.0",
"@types/fs-extra": "^9.0.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"docsify-cli": "^4.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^3.1.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.4",
"jsdoc-to-markdown": "^7.1.1",
"lint-staged": "^10.1.7",
"minami": "^1.2.3",
"prettier": "^2.0.5",
"semantic-release": "^19.0.3",
"standard-version": "^9.0.0",
"typescript": "^3.6.5"
},
"engines": {
"node": ">= 10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}