This repository has been archived by the owner on Jun 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "root",
"private": true,
"description": "Gradient creation library running in the browser",
"author": "Jakub Antolak <[email protected]>",
"license": "MIT",
"keywords": [
"css",
"svg",
"gradients",
"colors",
"chroma-js"
],
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"awesome-typescript-loader": "^5.2.1",
"commitizen": "^4.1.2",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"ghooks": "^2.0.4",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"ts-jest": "^26.1.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.9"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "webpack --config=./packages/core/config/webpack.prod.js && webpack --config=./packages/css/config/webpack.prod.js && webpack --config=./packages/svg/config/webpack.prod.js",
"build:dev": "webpack --config=./packages/core/config/webpack.dev.js && webpack --config=./packages/css/config/webpack.dev.js && webpack --config=./packages/svg/config/webpack.dev.js",
"commit": "git-cz",
"lint": "eslint packages/**/lib/*.ts",
"test": "jest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"resolutions": {
"handlebars": "4.5.3",
"serialize-javascript": "^2.1.1",
"minimist": "^0.2.1",
"acorn": "^7.1.1",
"kind-of": "^6.0.3",
"lodash": "^4.17.19",
"dot-prop": "^5.1.1",
"elliptic": "^6.5.3"
}
}